From 0bfc1542a69353bc18543679b4be2bbf91469111 Mon Sep 17 00:00:00 2001 From: Alesh Slovak Date: Sun, 14 Jul 2024 11:49:23 -0400 Subject: [PATCH] add support for new frzr command syntax --- usr/bin/steamos-update | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/usr/bin/steamos-update b/usr/bin/steamos-update index 4ac2124..5fdfb6e 100755 --- a/usr/bin/steamos-update +++ b/usr/bin/steamos-update @@ -25,7 +25,15 @@ while [[ $# -gt 0 ]]; do done -if command -v frzr-deploy > /dev/null; then +if command -v frzr > /dev/null; then + if [ -n "$CHECK" ]; then + frzr deploy --check + elif [ -n "$EXIT" ]; then + exit 0 + else + frzr deploy --steam-progress + fi +elif command -v frzr-deploy > /dev/null; then if [ -n "$CHECK" ]; then frzr-deploy --check elif [ -n "$EXIT" ]; then