diff options
Diffstat (limited to 'rel/files/bin')
| -rwxr-xr-x | rel/files/bin/pleroma_ctl | 10 | 
1 files changed, 7 insertions, 3 deletions
| diff --git a/rel/files/bin/pleroma_ctl b/rel/files/bin/pleroma_ctl index 9fc5b0bad..87c486514 100755 --- a/rel/files/bin/pleroma_ctl +++ b/rel/files/bin/pleroma_ctl @@ -140,11 +140,15 @@ else  	FULL_ARGS="$*"  	ACTION="$1" -	shift -        echo "$1" | grep "^-" >/dev/null +	if [ $# -gt 0 ]; then +		shift +	fi +	echo "$1" | grep "^-" >/dev/null  	if [ $? -eq 1 ]; then  		SUBACTION="$1" -		shift +		if [ $# -gt 0 ]; then +			shift +		fi  	fi  	if [ "$ACTION" = "update" ]; then | 
