From 218ed94286282205c2b63e2fe6e267dc27ce9c43 Mon Sep 17 00:00:00 2001 From: mdheller <21163552+mdheller@users.noreply.github.com> Date: Thu, 23 Apr 2026 21:53:51 -0400 Subject: [PATCH] build(source-os): add SourceOS office shell installer wrapper --- .../scripts/install_sourceos_office_shell.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 build/office-suite/scripts/install_sourceos_office_shell.sh diff --git a/build/office-suite/scripts/install_sourceos_office_shell.sh b/build/office-suite/scripts/install_sourceos_office_shell.sh new file mode 100644 index 0000000..ac27f81 --- /dev/null +++ b/build/office-suite/scripts/install_sourceos_office_shell.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash +set -euo pipefail + +ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../../.." && pwd)" + +"$ROOT/build/office-suite/scripts/install_office_desktop_entry.sh" +"$ROOT/build/office-suite/scripts/verify_office_desktop_entry.sh" + +if [[ -x "$ROOT/build/office-suite/scripts/verify_office_suite_profile.sh" ]]; then + "$ROOT/build/office-suite/scripts/verify_office_suite_profile.sh" +fi + +echo "SourceOS office shell install completed"