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 7bbb3e1 commit 5b30ffbCopy full SHA for 5b30ffb
install.sh
@@ -36,14 +36,18 @@ OwnError()
36
37
38
# Pre Checks To Avoid Later Screw Ups
39
-# Checking Logs Directory
40
+# Checking Logs Directory
41
if [ ! -d $LOGDIR ]
42
then
43
echo -e "\033[34mCreating EasyEngine (ee) Log Directory, Please Wait...\e[0m"
44
mkdir -p $LOGDIR || OwnError "Unable To Create Log Directory $LOGDIR"
45
fi
46
47
+# Update The APT Cache
48
+echo -e "\033[34mUpdating APT Cache, Please Wait...\e[0m"
49
+apt-get update &>> $INSTALLLOG || OwnError "Unable To Update APT Cache"
50
+
51
# Checking Tee
52
if [ ! -x /usr/bin/tee ]
53
0 commit comments