Skip to content

Commit 2f9a27f

Browse files
committed
remove whitespaces
1 parent 0696cdd commit 2f9a27f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/bashly/libraries/config/config.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ config_show() {
3030
config_get() {
3131
local key="$1"
3232
local default_value="$2"
33-
34-
config_load
33+
34+
config_load
3535
echo "${ini["$key"]:-$default_value}"
3636
}
3737

@@ -43,7 +43,7 @@ config_set() {
4343
local key="$1"
4444
shift
4545
local value="$*"
46-
46+
4747
config_load
4848
ini["$key"]="$value"
4949
config_save
@@ -55,7 +55,7 @@ config_set() {
5555
##
5656
config_del() {
5757
local key="$1"
58-
58+
5959
config_load
6060
unset "ini[$key]"
6161
config_save

0 commit comments

Comments
 (0)