Skip to content

Commit daa3848

Browse files
committed
bug fix: invert the condition when checking for PREFIX
1 parent 3c8a45e commit daa3848

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Determine PREFIX.
44
if [ -z "$1" ]; then
5-
if [ -n "$PREFIX" ]; then
5+
if [ -z "$PREFIX" ]; then
66
PREFIX='/usr'
77
fi
88
else

0 commit comments

Comments
 (0)