We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e8dd89 commit 0379b3eCopy full SHA for 0379b3e
bin/v-update-sys-hestia-git
@@ -153,7 +153,13 @@ echo "[*] Checking for missing dependencies and installing required libraries...
153
apt-get -qq install -y $SOFTWARE > /dev/null 2>&1
154
155
# Fix for Debian PHP Envroiment
156
-ln -s /usr/include/x86_64-linux-gnu/curl /usr/local/include/curl > /dev/null 2>&1
+if [ ! -e /usr/local/include/curl ]; then
157
+ if [ $BUILD_ARCH == "amd64" ]; then
158
+ ln -s /usr/include/x86_64-linux-gnu/curl /usr/local/include/curl
159
+ else
160
+ echo "No x86_64 working"
161
+ fi
162
+fi
163
164
# Get system cpu cores
165
NUM_CPUS=$(grep "^cpu cores" /proc/cpuinfo | uniq | awk '{print $4}')
0 commit comments