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"