about summary refs log tree commit diff stats
path: root/shatom
diff options
context:
space:
mode:
Diffstat (limited to 'shatom')
-rwxr-xr-xshatom5
1 files changed, 3 insertions, 2 deletions
diff --git a/shatom b/shatom index 3f9adac..7b149a9 100755 --- a/shatom +++ b/shatom
@@ -45,6 +45,7 @@ main() {
45 45
46 # Configuration file 46 # Configuration file
47 if [ -f "${CONFIG:=$PWD/shatom.conf.sh}" ]; then 47 if [ -f "${CONFIG:=$PWD/shatom.conf.sh}" ]; then
48 # shellcheck source=/dev/null
48 . "$CONFIG" 49 . "$CONFIG"
49 fi 50 fi
50 51
@@ -170,5 +171,5 @@ item_updated() {
170 171
171### Execution section 172### Execution section
172 173
173test -n $DEBUG && set -x 174test -n "$DEBUG" && set -x
174test -n $SOURCE || main "$@" 175test -n "$SOURCE" || main "$@"