You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
297 B

#!/bin/sh
channel=$1
echo $channel
path=""
if [[ $channel == "stable" ]]; then
path="/opt/discord"
else
path="/opt/discord-$channel"
fi
path+="/resources/app.asar"
echo $path
mv "$path" "$path.backup"
wget https://github.com/GooseMod/OpenAsar/releases/download/nightly/app.asar -O "$path"