From 5cf082b88481970cdceaad0f437216b71ce2648c Mon Sep 17 00:00:00 2001 From: Arinerron Date: Sat, 30 Mar 2019 16:02:16 -0700 Subject: [PATCH] Everthing working. Commits after this use the new script --- install/onionr | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/install/onionr b/install/onionr index ce980ef5..73430851 100755 --- a/install/onionr +++ b/install/onionr @@ -9,4 +9,7 @@ export ONIONR_HOME=${ONIONR_HOME:=/etc/onionr} export LOG_DIR=${LOG_DIR:=/var/log/onionr} cd "$OUTPUT_DIR/onionr" -exec su onionr -s /bin/sh -c "python3.7 onionr.py ""$@""" + +command="python3.7 onionr.py '$@'" +echo $command +exec su onionr -s /bin/sh -c "$command"