8 lines
167 B
Bash
8 lines
167 B
Bash
#!/bin/bash
|
|
|
|
# Exit immediately on error and throw an error
|
|
# when using undefined variables
|
|
set -eu
|
|
|
|
# Run the steamos-update script
|
|
exec /usr/bin/steamos-update "$0" |