diff options
author | Gitea <gitea@fake.local> | 2021-11-10 17:53:13 +0100 |
---|---|---|
committer | Gitea <gitea@fake.local> | 2021-11-10 17:53:13 +0100 |
commit | 7b4af63a90a726b98a59b83e53f040a7a566a11d (patch) | |
tree | b85747947816fe4375e85ab6b822ffabec548c7b /shared/updates.sh | |
parent | 80f78c2925530e945503ab603e79d1acc53075f4 (diff) | |
download | electrode-7b4af63a90a726b98a59b83e53f040a7a566a11d.tar.gz electrode-7b4af63a90a726b98a59b83e53f040a7a566a11d.tar.bz2 electrode-7b4af63a90a726b98a59b83e53f040a7a566a11d.zip |
Update
Diffstat (limited to 'shared/updates.sh')
-rwxr-xr-x | shared/updates.sh | 3 |
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=$? |