chore: Don't mix string and array in argument

This commit is contained in:
txtsd 2022-04-06 18:15:38 +05:30
parent 67303c5463
commit 7b08c714c8
No known key found for this signature in database
GPG Key ID: 000F85679D4B6B53

View File

@ -1,5 +1,6 @@
#!/bin/bash
echo "Launch args: $@"
echo -n "Launch args: "
echo "$@"
if [ "$1" == "update" ]; then
cd /app || exit 1