diff --git a/scripts/1_Install_Dependencies.sh b/scripts/1_Install_Dependencies.sh index 9fd81b7..872a9e4 100755 --- a/scripts/1_Install_Dependencies.sh +++ b/scripts/1_Install_Dependencies.sh @@ -49,10 +49,10 @@ _DEPENDENCIES="wget git xorg-server-xvfb \ # Installs Dependencies printf "\nInstalling dependencies: $_DEPENDENCIES\n"; -xbps-install -Sy $_DEPENDENCIES +xbps-install -Sy $_DEPENDENCIES 2>&1 >/dev/null if [[ "$(/lib/libc.so 2>&1)" == *"musl libc"* ]]; then - xbps-install -y libfl-devel libssp-devel libssp + xbps-install -y libfl-devel libssp-devel libssp 2>&1 >/dev/null fi ln -s /bin/clang /bin/cc diff --git a/scripts/2_Download_Source_Code.sh b/scripts/2_Download_Source_Code.sh index 8430a37..e7ef355 100755 --- a/scripts/2_Download_Source_Code.sh +++ b/scripts/2_Download_Source_Code.sh @@ -15,6 +15,6 @@ _SOURCE_TAR="firefox-${pkgver}.tar.xz" # Downloading and Extracting Firefox Source Code printf "\nDownloading Firefox Source Code\n"; -wget -O $_SOURCE_TAR $_SOURCE_CODE_URL +wget -O $_SOURCE_TAR $_SOURCE_CODE_URL 2>&1 > /dev/null mkdir -p $SOURCE_FOLDER tar -x --strip-components=1 -C $SOURCE_FOLDER -f $_SOURCE_TAR