Skip to content

Commit 0a04465

Browse files
fix(script): update case syntax
1 parent c001b0b commit 0a04465

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

script/studio

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,17 @@ if [ "$(docker ps -aq -f name="${STUDIO_NAME}")" ]; then
4242
echo
4343
docker attach "${STUDIO_NAME}"
4444
launch_studio=false
45-
break;;
45+
;;
4646
s|S)
4747
echo "==> studio: stopping existing container…"
4848
docker stop "${STUDIO_NAME}" > /dev/null
49-
break;;
49+
;;
5050
n|N)
5151
echo "==> studio: doing nothing with existing container… an error is likely to occur"
52-
break ;;
52+
;;
5353
*)
54-
echo "==> studio: $choice is invalid";;
54+
echo "==> studio: $choice is invalid"
55+
;;
5556
esac
5657
done
5758
fi

0 commit comments

Comments
 (0)