about summary refs log tree commit diff
path: root/pkgs/tools/graphics/zxing
diff options
context:
space:
mode:
authorVictor Engmark <victor@engmark.name>2021-11-14 15:54:33 +1300
committerVictor Engmark <victor@engmark.name>2021-11-14 16:04:46 +1300
commit57b496ea98bdbd633c48f16af1c69a196aaf963a (patch)
treee12cd5e6735aa44ae5725d8210b933de4a1234aa /pkgs/tools/graphics/zxing
parent90dbec47b7c8eff5262fda73d97335fb29e079fa (diff)
misc: Replace tab indentation with spaces
I've tried to be consistent, using four or eight spaces to line up
with existing code.
Diffstat (limited to 'pkgs/tools/graphics/zxing')
-rw-r--r--pkgs/tools/graphics/zxing/zxing.sh26
1 files changed, 13 insertions, 13 deletions
diff --git a/pkgs/tools/graphics/zxing/zxing.sh b/pkgs/tools/graphics/zxing/zxing.sh
index ca6ac60bab694..a38558d87026d 100644
--- a/pkgs/tools/graphics/zxing/zxing.sh
+++ b/pkgs/tools/graphics/zxing/zxing.sh
@@ -2,17 +2,17 @@
 choice="$1";
 shift
 case "$choice" in
-	encode | create | write | CommandLineEncoder)
-		zxing-cmdline-encoder "$@";
-		;;
-	decode | read | run | CommandLineRunner)
-		zxing-cmdline-runner "$@";
-		;;
-	help | usage | --help | --usage | -h)
-		zxing read;
-		zxing write;
-		;;
-	*)
-		zxing read "$choice" "$@"
-		;;
+    encode | create | write | CommandLineEncoder)
+        zxing-cmdline-encoder "$@";
+        ;;
+    decode | read | run | CommandLineRunner)
+        zxing-cmdline-runner "$@";
+        ;;
+    help | usage | --help | --usage | -h)
+        zxing read;
+        zxing write;
+        ;;
+    *)
+        zxing read "$choice" "$@"
+        ;;
 esac