How can I remove a cask without uninstalling the application?











up vote
2
down vote

favorite












I recently installed an app with homebrew-cask, but I want to handle its updates by myself and not via brew cask upgrade.



Is there a command or option to remove a cask from the local list, without uninstalling it?



If I use brew cask remove or brew cask uninstall the app will be uninstalled.



I'm looking for something like brew cask forget or something similar.










share|improve this question




























    up vote
    2
    down vote

    favorite












    I recently installed an app with homebrew-cask, but I want to handle its updates by myself and not via brew cask upgrade.



    Is there a command or option to remove a cask from the local list, without uninstalling it?



    If I use brew cask remove or brew cask uninstall the app will be uninstalled.



    I'm looking for something like brew cask forget or something similar.










    share|improve this question


























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      I recently installed an app with homebrew-cask, but I want to handle its updates by myself and not via brew cask upgrade.



      Is there a command or option to remove a cask from the local list, without uninstalling it?



      If I use brew cask remove or brew cask uninstall the app will be uninstalled.



      I'm looking for something like brew cask forget or something similar.










      share|improve this question















      I recently installed an app with homebrew-cask, but I want to handle its updates by myself and not via brew cask upgrade.



      Is there a command or option to remove a cask from the local list, without uninstalling it?



      If I use brew cask remove or brew cask uninstall the app will be uninstalled.



      I'm looking for something like brew cask forget or something similar.







      macos homebrew homebrew-cask






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 14 at 13:51

























      asked Nov 14 at 13:41









      Dave3o3

      113




      113
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          It does not exist a way of unlink/forget a cask in the new version. It was possible to unlink a cask in previous versions but this changed, now the only thing like this is rename the artifact itself instead of a link.:




          • https://github.com/Homebrew/homebrew-cask/issues/13201


          I suggest you the next:




          • You could install the app manually without using brew cask this will prevent cask of knowing about the app so you'll be able to control when to upgrade the app.


          • In case you´ve already installed the app you can uninstall it and then install it manually or just change the name of the app, for example, adding the prefix _App.app then uninstall it using brew cask uninstall App and then rename it to the original name: App.app.


          • Another option is removing autoupdate true from the formulae, you can do this using brew cask edit app and then removing it, this will prevent the app to be upgraded when you use brew cask upgrade. You'll need to know the app will be upgraded in case you run brew cask upgrade --greedy, so instead upgrade the apps without autoupdate true one by one: brew cask upgrade app. You'll know which apps can be updated but they're not automatically updated using brew cask outdated --greedy.


          • Finally, using brew tap homebrew/cask-versions you can control the versions you want to have installed if they're available in https://github.com/Homebrew/homebrew-cask-versions/tree/master/Casks.







          share|improve this answer























          • Thanks for the detailed answer, @pau ! While those recommendations all make sense, they don't provide the solution I'm looking for: just letting brew forget the cask as it was never installed.
            – Dave3o3
            Nov 20 at 10:40













          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53301620%2fhow-can-i-remove-a-cask-without-uninstalling-the-application%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          It does not exist a way of unlink/forget a cask in the new version. It was possible to unlink a cask in previous versions but this changed, now the only thing like this is rename the artifact itself instead of a link.:




          • https://github.com/Homebrew/homebrew-cask/issues/13201


          I suggest you the next:




          • You could install the app manually without using brew cask this will prevent cask of knowing about the app so you'll be able to control when to upgrade the app.


          • In case you´ve already installed the app you can uninstall it and then install it manually or just change the name of the app, for example, adding the prefix _App.app then uninstall it using brew cask uninstall App and then rename it to the original name: App.app.


          • Another option is removing autoupdate true from the formulae, you can do this using brew cask edit app and then removing it, this will prevent the app to be upgraded when you use brew cask upgrade. You'll need to know the app will be upgraded in case you run brew cask upgrade --greedy, so instead upgrade the apps without autoupdate true one by one: brew cask upgrade app. You'll know which apps can be updated but they're not automatically updated using brew cask outdated --greedy.


          • Finally, using brew tap homebrew/cask-versions you can control the versions you want to have installed if they're available in https://github.com/Homebrew/homebrew-cask-versions/tree/master/Casks.







          share|improve this answer























          • Thanks for the detailed answer, @pau ! While those recommendations all make sense, they don't provide the solution I'm looking for: just letting brew forget the cask as it was never installed.
            – Dave3o3
            Nov 20 at 10:40

















          up vote
          0
          down vote













          It does not exist a way of unlink/forget a cask in the new version. It was possible to unlink a cask in previous versions but this changed, now the only thing like this is rename the artifact itself instead of a link.:




          • https://github.com/Homebrew/homebrew-cask/issues/13201


          I suggest you the next:




          • You could install the app manually without using brew cask this will prevent cask of knowing about the app so you'll be able to control when to upgrade the app.


          • In case you´ve already installed the app you can uninstall it and then install it manually or just change the name of the app, for example, adding the prefix _App.app then uninstall it using brew cask uninstall App and then rename it to the original name: App.app.


          • Another option is removing autoupdate true from the formulae, you can do this using brew cask edit app and then removing it, this will prevent the app to be upgraded when you use brew cask upgrade. You'll need to know the app will be upgraded in case you run brew cask upgrade --greedy, so instead upgrade the apps without autoupdate true one by one: brew cask upgrade app. You'll know which apps can be updated but they're not automatically updated using brew cask outdated --greedy.


          • Finally, using brew tap homebrew/cask-versions you can control the versions you want to have installed if they're available in https://github.com/Homebrew/homebrew-cask-versions/tree/master/Casks.







          share|improve this answer























          • Thanks for the detailed answer, @pau ! While those recommendations all make sense, they don't provide the solution I'm looking for: just letting brew forget the cask as it was never installed.
            – Dave3o3
            Nov 20 at 10:40















          up vote
          0
          down vote










          up vote
          0
          down vote









          It does not exist a way of unlink/forget a cask in the new version. It was possible to unlink a cask in previous versions but this changed, now the only thing like this is rename the artifact itself instead of a link.:




          • https://github.com/Homebrew/homebrew-cask/issues/13201


          I suggest you the next:




          • You could install the app manually without using brew cask this will prevent cask of knowing about the app so you'll be able to control when to upgrade the app.


          • In case you´ve already installed the app you can uninstall it and then install it manually or just change the name of the app, for example, adding the prefix _App.app then uninstall it using brew cask uninstall App and then rename it to the original name: App.app.


          • Another option is removing autoupdate true from the formulae, you can do this using brew cask edit app and then removing it, this will prevent the app to be upgraded when you use brew cask upgrade. You'll need to know the app will be upgraded in case you run brew cask upgrade --greedy, so instead upgrade the apps without autoupdate true one by one: brew cask upgrade app. You'll know which apps can be updated but they're not automatically updated using brew cask outdated --greedy.


          • Finally, using brew tap homebrew/cask-versions you can control the versions you want to have installed if they're available in https://github.com/Homebrew/homebrew-cask-versions/tree/master/Casks.







          share|improve this answer














          It does not exist a way of unlink/forget a cask in the new version. It was possible to unlink a cask in previous versions but this changed, now the only thing like this is rename the artifact itself instead of a link.:




          • https://github.com/Homebrew/homebrew-cask/issues/13201


          I suggest you the next:




          • You could install the app manually without using brew cask this will prevent cask of knowing about the app so you'll be able to control when to upgrade the app.


          • In case you´ve already installed the app you can uninstall it and then install it manually or just change the name of the app, for example, adding the prefix _App.app then uninstall it using brew cask uninstall App and then rename it to the original name: App.app.


          • Another option is removing autoupdate true from the formulae, you can do this using brew cask edit app and then removing it, this will prevent the app to be upgraded when you use brew cask upgrade. You'll need to know the app will be upgraded in case you run brew cask upgrade --greedy, so instead upgrade the apps without autoupdate true one by one: brew cask upgrade app. You'll know which apps can be updated but they're not automatically updated using brew cask outdated --greedy.


          • Finally, using brew tap homebrew/cask-versions you can control the versions you want to have installed if they're available in https://github.com/Homebrew/homebrew-cask-versions/tree/master/Casks.








          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 20 at 16:59

























          answered Nov 18 at 22:25









          Pau

          4,80773163




          4,80773163












          • Thanks for the detailed answer, @pau ! While those recommendations all make sense, they don't provide the solution I'm looking for: just letting brew forget the cask as it was never installed.
            – Dave3o3
            Nov 20 at 10:40




















          • Thanks for the detailed answer, @pau ! While those recommendations all make sense, they don't provide the solution I'm looking for: just letting brew forget the cask as it was never installed.
            – Dave3o3
            Nov 20 at 10:40


















          Thanks for the detailed answer, @pau ! While those recommendations all make sense, they don't provide the solution I'm looking for: just letting brew forget the cask as it was never installed.
          – Dave3o3
          Nov 20 at 10:40






          Thanks for the detailed answer, @pau ! While those recommendations all make sense, they don't provide the solution I'm looking for: just letting brew forget the cask as it was never installed.
          – Dave3o3
          Nov 20 at 10:40




















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53301620%2fhow-can-i-remove-a-cask-without-uninstalling-the-application%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

          ComboBox Display Member on multiple fields

          Is it possible to collect Nectar points via Trainline?