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.
macos homebrew homebrew-cask
add a comment |
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.
macos homebrew homebrew-cask
add a comment |
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.
macos homebrew homebrew-cask
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
macos homebrew homebrew-cask
edited Nov 14 at 13:51
asked Nov 14 at 13:41
Dave3o3
113
113
add a comment |
add a comment |
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 usingbrew cask edit app
and then removing it, this will prevent the app to be upgraded when you usebrew cask upgrade
. You'll need to know the app will be upgraded in case you runbrew cask upgrade --greedy
, so instead upgrade the apps withoutautoupdate true
one by one:brew cask upgrade app
. You'll know which apps can be updated but they're not automatically updated usingbrew 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.
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
add a comment |
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 usingbrew cask edit app
and then removing it, this will prevent the app to be upgraded when you usebrew cask upgrade
. You'll need to know the app will be upgraded in case you runbrew cask upgrade --greedy
, so instead upgrade the apps withoutautoupdate true
one by one:brew cask upgrade app
. You'll know which apps can be updated but they're not automatically updated usingbrew 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.
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
add a comment |
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 usingbrew cask edit app
and then removing it, this will prevent the app to be upgraded when you usebrew cask upgrade
. You'll need to know the app will be upgraded in case you runbrew cask upgrade --greedy
, so instead upgrade the apps withoutautoupdate true
one by one:brew cask upgrade app
. You'll know which apps can be updated but they're not automatically updated usingbrew 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.
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
add a comment |
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 usingbrew cask edit app
and then removing it, this will prevent the app to be upgraded when you usebrew cask upgrade
. You'll need to know the app will be upgraded in case you runbrew cask upgrade --greedy
, so instead upgrade the apps withoutautoupdate true
one by one:brew cask upgrade app
. You'll know which apps can be updated but they're not automatically updated usingbrew 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.
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 usingbrew cask edit app
and then removing it, this will prevent the app to be upgraded when you usebrew cask upgrade
. You'll need to know the app will be upgraded in case you runbrew cask upgrade --greedy
, so instead upgrade the apps withoutautoupdate true
one by one:brew cask upgrade app
. You'll know which apps can be updated but they're not automatically updated usingbrew 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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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