ok. adding sleep as seems that base is being ommited
This commit is contained in:
@@ -24,7 +24,8 @@ if [ ! -d Install-Logs ]; then
|
|||||||
mkdir Install-Logs
|
mkdir Install-Logs
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -d paru-bin ]; then
|
# checking if paru-bin exist and removing if it is
|
||||||
|
if [ -d paru-bin ]; then
|
||||||
rm -rf paru-bin 2>&1 | tee -a "$LOG"
|
rm -rf paru-bin 2>&1 | tee -a "$LOG"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ if [ ! -d Install-Logs ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Check Existing yay-bin
|
# Check Existing yay-bin
|
||||||
if [ ! -d yay-bin ]; then
|
if [ -d yay-bin ]; then
|
||||||
rm -rf yay-bin 2>&1 | tee -a "$LOG"
|
rm -rf yay-bin 2>&1 | tee -a "$LOG"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
@@ -142,6 +142,7 @@ printf "\n"
|
|||||||
# Ensuring all in the scripts folder are made executable
|
# Ensuring all in the scripts folder are made executable
|
||||||
chmod +x install-scripts/*
|
chmod +x install-scripts/*
|
||||||
|
|
||||||
|
sleep 1
|
||||||
# Ensuring base-devel is installed
|
# Ensuring base-devel is installed
|
||||||
execute_script "00-base.sh"
|
execute_script "00-base.sh"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user