Changed the irc utility to use curl instead of wget because of problems on armv7h with wget.
This commit is contained in:
parent
9c26da7f0a
commit
ba84837102
@ -16,7 +16,7 @@ fi
|
||||
# check for Stormux specific irssi config
|
||||
if [[ ! -d ~/.stormux_irssi ]]; then
|
||||
{ fileName="$(mktemp --suffix .txz)"
|
||||
wget -O "$fileName" "https://stormux.org/downloads/.stormux_irssi.txz"
|
||||
curl --output "$fileName" "https://stormux.org/downloads/.stormux_irssi.txz"
|
||||
tar xf "$fileName" -C ~/
|
||||
sed -i -e "s/user_name = \"stormux\";$/user_name = \"$nick\";/" -e "s/nick = \"stormux\";$/nick = \"$nick\";/" ~/.stormux_irssi/config
|
||||
} | dialog --progressbox "Configuring irssi..." -1 -1
|
||||
|
Loading…
Reference in New Issue
Block a user