Skip to content

Commit f5db0a2

Browse files
committed
ci: wip actions
1 parent 25058a5 commit f5db0a2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

scripts/build-verifiable.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fi
1111
program_lib_name=$1
1212
cluster=$2
1313

14-
if [[ -z "$program_lib_name" || -z "$cluster" ]]; then
14+
if [ -z "$program_lib_name" ] || [ -z "$cluster" ]; then
1515
ecbo "Usage: $0 <program_lib_name> <cluster>"
1616
exit 1
1717
fi

scripts/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cd $ROOT
55
program_lib_name=$1
66
cluster=$2
77

8-
if [[ -z "$program_lib_name" || -z "$cluster" ]]; then
8+
if [ -z "$program_lib_name" ] || [ -z "$cluster" ]; then
99
ecbo "Usage: $0 <program_lib_name> <cluster>"
1010
exit 1
1111
fi

scripts/deploy-buffer.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ program_lib_name=$1
66
cluster=$2
77
keypair=$3
88

9-
if [[ -z "$keypair" || -z "$program_lib_name" || -z "$cluster" ]]; then
9+
if [ -z "$keypair" ] || [ -z "$program_lib_name" ] || [ -z "$cluster" ]; then
1010
ecbo "Usage: $0 <program_lib_name> <cluster> <keypair>"
1111
exit 1
1212
fi

scripts/verify.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fi
1111
program_lib_name=$1
1212
cluster=$2
1313

14-
if [[ -z "$program_lib_name" || -z "$cluster" ]]; then
14+
if [ -z "$program_lib_name" ] || [ -z "$cluster" ]; then
1515
ecbo "Usage: $0 <program_lib_name> <cluster>"
1616
exit 1
1717
fi

0 commit comments

Comments
 (0)