mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
7 lines
316 B
Bash
7 lines
316 B
Bash
# Show installation environment variables
|
|
gum log --level info "Installation Environment:"
|
|
|
|
env | grep -E "^(OMARCHY_CHROOT_INSTALL|OMARCHY_ONLINE_INSTALL|OMARCHY_USER_NAME|OMARCHY_USER_EMAIL|USER|HOME|OMARCHY_REPO|OMARCHY_REF|OMARCHY_PATH)=" | sort | while IFS= read -r var; do
|
|
gum log --level info " $var"
|
|
done
|