Run /usr/bin/checkbashisms against our script to see if we don't introduce anymore bash'isms.

This commit is contained in:
Pedro Algarvio 2013-01-21 17:57:17 +00:00
parent b712b713e7
commit eb60270b13

View file

@ -2,6 +2,7 @@ before_install:
- sudo apt-get update && sudo apt-get install devscripts
script:
- /usr/bin/checkbashisms -pxf bootstrap-salt-minion.sh || exit 1
- (/bin/echo -e '\nInstalling stable with bash' && sudo /bin/bash bootstrap-salt-minion.sh && salt-minion --versions-report && sudo apt-get remove salt-common salt-minion) || exit 1
- (/bin/echo -e '\nInstalling stable with sh' && sudo ./bootstrap-salt-minion.sh && salt-minion --versions-report && sudo apt-get remove salt-common salt-minion) || exit 1
- (/bin/echo -e '\nInstalling explicit stable with sh' && sudo ./bootstrap-salt-minion.sh stable && salt-minion --versions-report && sudo apt-get remove salt-common salt-minion) || exit 1