Necessary to have consistent use of `printf` especially with formatting strings and new lines. Milestone: patch
17 lines
336 B
Bash
Executable File
17 lines
336 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
# Installs system and application default settings.
|
|
|
|
set -o nounset
|
|
set -o errexit
|
|
set -o pipefail
|
|
IFS=$'\n\t'
|
|
|
|
SCRIPT_PATH="$MAC_OS_CONFIG_PATH/bin/install_defaults"
|
|
|
|
if [[ -x "$SCRIPT_PATH" ]]; then
|
|
"$SCRIPT_PATH"
|
|
else
|
|
printf "%s\n" "WARNING: Default settings script does not exist or is not executable."
|
|
fi
|