diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2015-02-24 18:50:20 +0100 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2015-02-24 18:50:20 +0100 |
commit | 605fa687c3a78af2995deb65ee51568e3ffa5507 (patch) | |
tree | 3d02c66c26975f27911d9642c993b3c24145644a | |
parent | e22ff893e9696a92318682cbf4401fb84f56be78 (diff) | |
download | xtools-605fa687c3a78af2995deb65ee51568e3ffa5507.tar.gz xtools-605fa687c3a78af2995deb65ee51568e3ffa5507.tar.xz xtools-605fa687c3a78af2995deb65ee51568e3ffa5507.zip |
xq: quote $1.
-rwxr-xr-x | xq | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xq b/xq index be68aba..1681fec 100755 --- a/xq +++ b/xq @@ -11,7 +11,7 @@ ADDREPO="--repository=hostdir/binpkgs/$BRANCH --repository=../../hostdir/binpkgs/$BRANCH" R= -if [ $1 = -R ]; then +if [ "$1" = -R ]; then R=-R shift fi |