mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 02:09:49 +00:00
4f6b001483
- Updates paths for Linux and MacOS builds - Strategy matrix build for Linux (CPACK/AppImage) - Fix dependencies for rpm package
10 lines
385 B
Bash
10 lines
385 B
Bash
#!/bin/sh
|
|
#Store backup for old config files to prevent it from being overwritten
|
|
if [ -f /usr/local/sunshine/config/sunshine.conf ]; then
|
|
cp /usr/local/sunshine/config/sunshine.conf /usr/local/sunshine/config/sunshine.conf.old
|
|
fi
|
|
|
|
if [ -f /usr/local/sunshine/config/apps.json ]; then
|
|
cp /usr/local/sunshine/config/apps.json /usr/local/sunshine/config/apps.json.old
|
|
fi
|