5 lines
206 B
Bash
Executable file
5 lines
206 B
Bash
Executable file
#!/bin/bash
|
|
systemctl stop wings
|
|
curl -L "https://github.com/calagopus/wings/releases/latest/download/wings-rs-$(uname -m)-linux" -o /usr/local/bin/wings
|
|
chmod +x /usr/local/bin/wings
|
|
systemctl start wings
|