2 Commits
v2.0 ... master

Author SHA1 Message Date
6715ac58f6 Use quotes for filename parameter. 2021-01-26 10:09:50 +01:00
0cf97d13b6 Fixed install script. 2019-03-17 19:00:38 +01:00
2 changed files with 3 additions and 3 deletions

View File

@ -62,7 +62,7 @@ if [ $? == 1 ]; then
fi
# check if the file exists
if [ ! -f $1 ]; then
if [ ! -f "$1" ]; then
echo "Regular file $1 does not exist."
exit 1
fi

View File

@ -1,5 +1,5 @@
#!/bin/sh
if [ -z ${$PREFIX+x} ];
#!/bin/bash
if [ -z ${PREFIX+x} ];
then
PREFIX=/usr
fi