Skip to content

Commit

Permalink
Update utils.py brew cask install change (#19)
Browse files Browse the repository at this point in the history
used to work as 'brew cask install pkgname', now you need to do it as 'brew install --cask pkgname' .
  • Loading branch information
TheBigBear authored Feb 7, 2021
1 parent 67fb468 commit d3e7658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def build_package_command(package_manager, packages): # type: (str, List[str])

package_command = build_multiline_command(package_boilerplate[package_manager], brew_packages)
if cask_packages:
package_command += '\n\n' + build_multiline_command('brew cask install', cask_packages)
package_command += '\n\n' + build_multiline_command('brew install --cask', cask_packages)

elif package_manager == 'pacman':
pacman_packages = set()
Expand Down

0 comments on commit d3e7658

Please sign in to comment.