fix bash bin by passing all args
This commit is contained in:
parent
9d44093df5
commit
3cfe1cddc8
|
@ -190,11 +190,9 @@ popd >/dev/null
|
||||||
|
|
||||||
echo " - configuring telebit..."
|
echo " - configuring telebit..."
|
||||||
|
|
||||||
cat << EOF > $TELEBIT_PATH/bin/$my_app
|
echo '#!/bin/bash' > "$TELEBIT_PATH/bin/$my_app"
|
||||||
#!/bin/bash
|
echo "$my_node $TELEBIT_PATH/bin/$my_bin "'"$@"' >> "$TELEBIT_PATH/bin/$my_app"
|
||||||
$my_node $TELEBIT_PATH/bin/$my_bin
|
chmod a+x "$TELEBIT_PATH/bin/$my_app"
|
||||||
EOF
|
|
||||||
chmod a+x $TELEBIT_PATH/bin/$my_app
|
|
||||||
|
|
||||||
# Create uninstall script based on the install script variables
|
# Create uninstall script based on the install script variables
|
||||||
cat << EOF > $TELEBIT_PATH/bin/${my_app}_uninstall
|
cat << EOF > $TELEBIT_PATH/bin/${my_app}_uninstall
|
||||||
|
|
Loading…
Reference in New Issue