Browse Source

Properly pass all arguments to TorNet

Using $* without quotes would lead to splitting parameters with spaces
Daniel Martí 9 years ago
parent
commit
0233979e2c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      chutney

+ 1 - 1
chutney

@@ -1,4 +1,4 @@
 #!/bin/sh
 
 export PYTHONPATH="`dirname $0`/lib:${PYTHONPATH}"
-${PYTHON:=python2} -m chutney.TorNet $*
+${PYTHON:=python2} -m chutney.TorNet "$@"