From cd539a150881324e47b0a7d6116fc5bf35f89bb5 Mon Sep 17 00:00:00 2001 From: mdheller <21163552+mdheller@users.noreply.github.com> Date: Fri, 24 Apr 2026 08:55:32 -0400 Subject: [PATCH] build(source-os): add office shell verify wrapper --- .../office-suite/scripts/office_shell_verify.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 build/office-suite/scripts/office_shell_verify.sh diff --git a/build/office-suite/scripts/office_shell_verify.sh b/build/office-suite/scripts/office_shell_verify.sh new file mode 100644 index 0000000..216cd73 --- /dev/null +++ b/build/office-suite/scripts/office_shell_verify.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash +set -euo pipefail + +ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../../.." && pwd)" + +"$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 + +if [[ -x "$ROOT/build/office-suite/scripts/install_sourceos_office_shell_smoke.sh" ]]; then + "$ROOT/build/office-suite/scripts/install_sourceos_office_shell_smoke.sh" +fi + +echo "office shell verification passed"