mirror of
https://github.com/awalsh128/cache-apt-pkgs-action.git
synced 2025-09-20 18:17:15 +00:00
Fix param check.
This commit is contained in:
parent
110c8b1c77
commit
e1665e549b
|
@ -36,7 +36,7 @@ if test -z "${packages}"; then
|
||||||
exit 2
|
exit 2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "${execute_install_scripts}" != "true" -o "${execute_install_scripts}" != "false"; then
|
if test "${execute_install_scripts}" != "true" -a "${execute_install_scripts}" != "false"; then
|
||||||
log "aborted"
|
log "aborted"
|
||||||
log "execute_install_scripts value '${execute_install_scripts}' must be either true or false (case sensitive)."
|
log "execute_install_scripts value '${execute_install_scripts}' must be either true or false (case sensitive)."
|
||||||
exit 3
|
exit 3
|
||||||
|
|
Loading…
Reference in a new issue