File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11
11
program_lib_name=$1
12
12
cluster=$2
13
13
14
- if [[ -z " $program_lib_name " || -z " $cluster " ] ]; then
14
+ if [ -z " $program_lib_name " ] || [ -z " $cluster " ]; then
15
15
ecbo " Usage: $0 <program_lib_name> <cluster>"
16
16
exit 1
17
17
fi
Original file line number Diff line number Diff line change 5
5
program_lib_name=$1
6
6
cluster=$2
7
7
8
- if [[ -z " $program_lib_name " || -z " $cluster " ] ]; then
8
+ if [ -z " $program_lib_name " ] || [ -z " $cluster " ]; then
9
9
ecbo " Usage: $0 <program_lib_name> <cluster>"
10
10
exit 1
11
11
fi
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ program_lib_name=$1
6
6
cluster=$2
7
7
keypair=$3
8
8
9
- if [[ -z " $keypair " || -z " $program_lib_name " || -z " $cluster " ] ]; then
9
+ if [ -z " $keypair " ] || [ -z " $program_lib_name " ] || [ -z " $cluster " ]; then
10
10
ecbo " Usage: $0 <program_lib_name> <cluster> <keypair>"
11
11
exit 1
12
12
fi
Original file line number Diff line number Diff line change 11
11
program_lib_name=$1
12
12
cluster=$2
13
13
14
- if [[ -z " $program_lib_name " || -z " $cluster " ] ]; then
14
+ if [ -z " $program_lib_name " ] || [ -z " $cluster " ]; then
15
15
ecbo " Usage: $0 <program_lib_name> <cluster>"
16
16
exit 1
17
17
fi
You can’t perform that action at this time.
0 commit comments