Skip to content

Commit 0151b9b

Browse files
author
Kristan Kenney
committed
Change *.deb install location in hst_autocompile.sh
1 parent c06eb31 commit 0151b9b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/hst_autocompile.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ timestamp() {
2121
}
2222

2323
# Install needed software
24-
echo "Update system repository..."
25-
apt-get -qq update
24+
echo "Updating system APT repositories..."
25+
apt-get -qq update > /dev/null 2>&1
2626
echo "Installing dependencies for compilation..."
27-
apt-get -qq install -y $SOFTWARE
27+
apt-get -qq install -y $SOFTWARE > /dev/null 2>&1
2828

2929
# Fix for Debian PHP Envroiment
3030
if [ ! -e /usr/local/include/curl ]; then
@@ -314,7 +314,7 @@ fi
314314
#################################################################################
315315

316316
if [ "$INSTALL" = 'y' ] || [ "$INSTALL" = 'Y' ]; then
317-
for i in ~/*hestia*.deb; do
317+
for i in $BUILD_DIR/*hestia*.deb; do
318318
# Install all available packages
319319
dpkg -i $i
320320
done

0 commit comments

Comments
 (0)