aboutsummaryrefslogtreecommitdiff
path: root/shared/updates.sh
diff options
context:
space:
mode:
authorGitea <gitea@fake.local>2021-11-10 17:53:13 +0100
committerGitea <gitea@fake.local>2021-11-10 17:53:13 +0100
commit7b4af63a90a726b98a59b83e53f040a7a566a11d (patch)
treeb85747947816fe4375e85ab6b822ffabec548c7b /shared/updates.sh
parent80f78c2925530e945503ab603e79d1acc53075f4 (diff)
downloadelectrode-7b4af63a90a726b98a59b83e53f040a7a566a11d.tar.gz
electrode-7b4af63a90a726b98a59b83e53f040a7a566a11d.tar.bz2
electrode-7b4af63a90a726b98a59b83e53f040a7a566a11d.zip
Update
Diffstat (limited to 'shared/updates.sh')
-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=$?