aboutsummaryrefslogtreecommitdiff
path: root/shared
diff options
context:
space:
mode:
Diffstat (limited to 'shared')
-rwxr-xr-xshared/updates.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/shared/updates.sh b/shared/updates.sh
index 0e8387f..b229f8e 100755
--- a/shared/updates.sh
+++ b/shared/updates.sh
@@ -2,7 +2,7 @@
echo "updater: Downloading update..."
-wget https://github.com/Minteck-Projects/Neutron-Core/archive/trunk.zip &>/dev/null
+wget https://github.com/Minteck/Neutron/archive/trunk.zip &>/dev/null
code=$?
if [[ $code -eq 0 ]]; then
echo "updater: Success"
@@ -15,6 +15,7 @@ fi
echo "updater: Extracting..."
+mkdir -p ./public
rm -dr ./Neutron-trunk
unzip trunk.zip
code=$?