We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c06eb31 commit 0151b9bCopy full SHA for 0151b9b
1 file changed
src/hst_autocompile.sh
@@ -21,10 +21,10 @@ timestamp() {
21
}
22
23
# Install needed software
24
-echo "Update system repository..."
25
-apt-get -qq update
+echo "Updating system APT repositories..."
+apt-get -qq update > /dev/null 2>&1
26
echo "Installing dependencies for compilation..."
27
-apt-get -qq install -y $SOFTWARE
+apt-get -qq install -y $SOFTWARE > /dev/null 2>&1
28
29
# Fix for Debian PHP Envroiment
30
if [ ! -e /usr/local/include/curl ]; then
@@ -314,7 +314,7 @@ fi
314
#################################################################################
315
316
if [ "$INSTALL" = 'y' ] || [ "$INSTALL" = 'Y' ]; then
317
- for i in ~/*hestia*.deb; do
+ for i in $BUILD_DIR/*hestia*.deb; do
318
# Install all available packages
319
dpkg -i $i
320
done
0 commit comments