Skip to content

Commit 9997bbf

Browse files
committed
Fix error in check line 256
1 parent 09e41d7 commit 9997bbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hst_autocompile.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ if [ "$dontinstalldeps" != 'true' ]; then
253253
apt-get -qq install -y $SOFTWARE > /dev/null 2>&1
254254

255255
# Fix for Debian PHP Envroiment
256-
if [ ! -e /usr/local/include/curl ]; then
256+
if [ ! -f /usr/local/include/curl ]; then
257257
ln -s /usr/include/x86_64-linux-gnu/curl /usr/local/include/curl
258258
fi
259259
fi

0 commit comments

Comments
 (0)