21 lines
568 B
Bash
21 lines
568 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Tell build process to exit if there are any errors.
|
|
set -oue pipefail
|
|
|
|
# gamescope session
|
|
sudo chmod 755 /usr/bin/gamescope-session
|
|
|
|
# jupiter biosupdate
|
|
sudo chmod 755 /usr/bin/jupiter-biosupdate
|
|
sudo chmod 755 /usr/bin/steamos-polkit-helpers/jupiter-biosupdate
|
|
|
|
# steamos select branch
|
|
sudo chmod 755 /usr/bin/steamos-select-branch
|
|
|
|
# steamos update
|
|
sudo chmod 755 /usr/bin/steamos-update
|
|
sudo chmod 755 /usr/bin/steamos-polkit-helpers/steamos-update
|
|
|
|
# steamos set timezone
|
|
sudo chmod 755 /usr/bin/steamos-polkit-helpers/steamos-set-timezone |