Ver código fonte

Properly pass all arguments to TorNet

Using $* without quotes would lead to splitting parameters with spaces
Daniel Martí 11 anos atrás
pai
commit
0233979e2c
1 arquivos alterados com 1 adições e 1 exclusões
  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 "$@"