Skip to content

Commit 040dd0c

Browse files
committed
Add adopt parameter to brew install
1 parent 6b03654 commit 040dd0c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "default",
3-
"version": "1.1.0-beta4",
3+
"version": "1.1.0-beta6",
44
"description": "Default plugin for Codify - provides 50+ declarative resources for managing development tools and system configuration across macOS and Linux",
55
"main": "dist/index.js",
66
"scripts": {

src/resources/homebrew/casks-parameter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export class CasksParameter extends StatefulParameter<HomebrewConfig, string[]>
9797
return;
9898
}
9999

100-
const result = await $.spawnSafe(`brew install --casks ${casksToInstall.join(' ')}`, {
100+
const result = await $.spawnSafe(`brew install --casks --adopt ${casksToInstall.join(' ')}`, {
101101
interactive: true,
102102
env: { HOMEBREW_NO_AUTO_UPDATE: 1 }
103103
})

0 commit comments

Comments
 (0)