11 lines
325 B
Bash
11 lines
325 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
LOGFILE="$HOME/.local/logs/steamos-update.log"
|
|
|
|
log() { echo "[$(date --iso-8601=seconds)] $*" | tee -a "$LOGFILE"; }
|
|
|
|
log "Starting SteamOS update..."
|
|
log "Arguments passed: ${@}"
|
|
echo "Not applicable for this OS"
|
|
# TODO: Implement SteamOS update logic for now inform no update available
|
|
exit 7 |