Browse Source

Fix weird alignment

Alois Mahdal 6 years ago
parent
commit
a92b531577
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      src/saturnin.sh.skel

+ 5
- 5
src/saturnin.sh.skel View File

@@ -528,11 +528,11 @@ _saturnin__conf__load() {
528 528
         case $arg in
529 529
             -|*/*)      # stdin, or path (with slash)
530 530
                 cat "$arg" || es=3
531
-            ;;
532
-        *)              # name given, find all its incarnations
533
-            saturnin__conf_find "$arg" \
534
-              |  _saturnin__conf__merge; es=$?
535
-            ;;
531
+                ;;
532
+            *)          # name given, find all its incarnations
533
+                saturnin__conf_find "$arg" \
534
+                  | _saturnin__conf__merge; es=$?
535
+                ;;
536 536
         esac
537 537
     done
538 538
     return $es