Skip to content

Commit 3db6433

Browse files
authored
Merge pull request #1783 from romkatv/fix-prefix
bug fix: invert the condition when checking for PREFIX
2 parents 85ced4b + daa3848 commit 3db6433

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)