mirror of
https://github.com/mtan93/Installomator.git
synced 2026-03-08 05:31:53 +00:00
19 lines
430 B
Plaintext
19 lines
430 B
Plaintext
valuesfromarguments)
|
|
if [[ -z $name ]]; then
|
|
printlog "need to provide 'name'"
|
|
exit 1
|
|
fi
|
|
if [[ -z $type ]]; then
|
|
printlog "need to provide 'type'"
|
|
exit 1
|
|
fi
|
|
if [[ -z $downloadURL ]]; then
|
|
printlog "need to provide 'downloadURL'"
|
|
exit 1
|
|
fi
|
|
if [[ -z $expectedTeamID ]]; then
|
|
printlog "need to provide 'expectedTeamID'"
|
|
exit 1
|
|
fi
|
|
;;
|