Only run tests optionally
This commit is contained in:
parent
e681c29f72
commit
45da08e2e3
|
@ -172,9 +172,11 @@ function install_apps_interactive {
|
|||
install_apps interactive
|
||||
}
|
||||
|
||||
${PROJECT_NAME}-tests
|
||||
if [ ! "$?" = "0" ]; then
|
||||
exit 2
|
||||
if [[ $1 == "test"* ]]; then
|
||||
${PROJECT_NAME}-tests
|
||||
if [ ! "$?" = "0" ]; then
|
||||
exit 2
|
||||
fi
|
||||
fi
|
||||
|
||||
detect_installable_apps
|
||||
|
|
Loading…
Reference in New Issue