8 lines
242 B
Bash
Executable File
8 lines
242 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
install_option_prefix=''
|
|
[[ "$BOX_SETUP_OS" = "macos" ]] && install_option_prefix='--cask'
|
|
${=BOX_SETUP_INSTALL_COMMAND} "$install_option_prefix" gimp
|
|
|
|
# ${=BOX_SETUP_INSTALL_COMMAND} imagemagick # TODO: consider this program too
|