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"