You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
#!/usr/bin/env bash
|
|
#
|
|
# script.sh
|
|
#
|
|
# This file is meant to be sourced during the `script` phase of the Travis
|
|
# build. Do not attempt to source or run it locally.
|
|
#
|
|
# shellcheck disable=SC1090
|
|
. "${TRAVIS_BUILD_DIR}/ci/travis/helpers.sh"
|
|
|
|
header 'Running script.sh...'
|
|
|
|
modified_ruby_files=($(git diff --name-only --diff-filter=AMR "${TRAVIS_COMMIT_RANGE}" -- *.rb))
|
|
|
|
for file in "${modified_ruby_files[@]}"; do
|
|
[[ "${file}" == 'Casks/'* ]] && modified_casks+=("${file}") || casks_wrong_dir+=("${file}")
|
|
done
|
|
|
|
if [[ ${#casks_wrong_dir[@]} -gt 0 ]]; then
|
|
odie "Casks added outside Casks directory: ${casks_wrong_dir[*]}"
|
|
elif [[ ${#modified_casks[@]} -gt 0 ]]; then
|
|
run brew cask _audit_modified_casks "${TRAVIS_COMMIT_RANGE}"
|
|
run brew cask style "${modified_casks[@]}"
|
|
if [[ ${#modified_casks[@]} -le 3 ]]; then
|
|
for cask in "${modified_casks[@]}"; do
|
|
run brew cask reinstall --verbose "${cask}"
|
|
run brew cask uninstall --verbose "${cask}"
|
|
done
|
|
else
|
|
ohai 'More than 3 Casks modified, skipping install'
|
|
fi
|
|
else
|
|
ohai 'No Casks modified, skipping'
|
|
fi
|
|
|