refactor: remove trailing whitespace

Remove trailing whitespace while there isn't much. This is discouraged,
since it can mess with git-blame information, but it irks me there is
trailing whitespace.

This commit might be dropped if requested during review. :(
pull/6/head
d3adb5 2022-05-08 21:13:03 -03:00
rodzic 4b57f8c040
commit c49e2c17fc
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 36962FB62A3776A5
1 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -8,7 +8,7 @@ CONFIG_FILE="${DATA_DIR}/mumble_server_config.ini"
# Grab the original command line that is supposed to start the Mumble server
server_invocation=( "${@}" )
array_contains () {
array_contains () {
local array="$1[@]"
local seeking=$2
local contained=false
@ -35,16 +35,16 @@ set_config() {
apply_value=false
fi
fi
if [[ "$apply_value" = "true" ]]; then
echo "Setting config \"$config_name\" to: '$config_value'"
used_configs+=("$config_name")
# Append config to our on-the-fly-built config file
echo "${config_name}=${config_value}" >> "$CONFIG_FILE"
fi
}
# Drop the user into a shell, if they so wish
if [[ "$1" = "bash" || "$1" = "sh" ]]; then
echo "Dropping into interactive BASH session"
@ -62,7 +62,7 @@ else
used_configs=()
existing_config_options=()
####
# Check what kind of configurations there exist in the bare bones config file
####