Skip to content

Commit 97d734e

Browse files
committed
fix script
1 parent 2d2ef4d commit 97d734e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/buildAndDeployLambdaAssembly.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ run() {
1515

1616
mkdir bin
1717

18-
if [ $type == 'assembly' ]; then
18+
if [[ "$type" == "assembly" ]]; then
1919
preamble=true
2020
runtime='provided.al2023'
2121
else
2222
preamble=false
2323
runtime='java21'
2424
fi
2525

26-
if [ $type == 'assembly' ]; then
26+
if [[ "$type" == "assembly" ]]; then
2727

2828
if scala --power package --assembly . --verbose --force --preamble=true -o ./bin/bootstrap; then
2929

0 commit comments

Comments
 (0)