Browse Source

Fix weird alignment

Alois Mahdal 7 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
         case $arg in
528
         case $arg in
529
             -|*/*)      # stdin, or path (with slash)
529
             -|*/*)      # stdin, or path (with slash)
530
                 cat "$arg" || es=3
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
         esac
536
         esac
537
     done
537
     done
538
     return $es
538
     return $es