Fix shell quoting of dragonx-cli

This commit is contained in:
Duke
2023-10-17 14:18:14 -04:00
parent 4256e7d835
commit e03582e856
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/sh
echo "./src/hush-cli -ac_name=ANTISPAM $@"
./src/hush-cli -ac_name=ANTISPAM $@
./src/hush-cli -ac_name=ANTISPAM "$@"

View File

@@ -10,4 +10,4 @@ cd $DIR
DIR="$( cd "$( dirname "$( readlink "${BASH_SOURCE[0]}" )" )" && pwd )"
cd $DIR
./hush-cli -ac_name=DRAGONX $@
./hush-cli -ac_name=DRAGONX "$@"