mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
unquote variables
This commit is contained in:
@@ -38,13 +38,13 @@ if [[ ! -z $DOKKU_HOST ]]; then
|
||||
fi
|
||||
|
||||
if [[ -z "$donotshift" ]]; then
|
||||
ssh dokku@$DOKKU_HOST "$*"
|
||||
ssh dokku@$DOKKU_HOST $*
|
||||
exit $?
|
||||
fi
|
||||
|
||||
verb=$1
|
||||
shift
|
||||
ssh dokku@$DOKKU_HOST "$verb" "$appname" "$@"
|
||||
ssh dokku@$DOKKU_HOST "$verb" "$appname" $@
|
||||
}
|
||||
|
||||
if [[ "$0" == "dokku" ]] || [[ "$0" == *dokku_client.sh ]]; then
|
||||
|
||||
Reference in New Issue
Block a user