about summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2020-07-15T13·51-0400
committerglittershark <grfn@gws.fyi>2020-07-15T13·58+0000
commit8c34a475671cc67216c9b7dbccc4cb493fd05227 (patch)
treea1b0a19f204adb69b3266705bdbe507a4d53e548 /bin
parent1213b086a1015a662ab7ebd658f784534fd3116a (diff)
chore(bin): Alphabetize dispatch script r/1300
Change-Id: Ia45d8a9de09a09d7399def6ce80dc8356c53c8fc
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1175
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/__dispatch.sh50
1 files changed, 25 insertions, 25 deletions
diff --git a/bin/__dispatch.sh b/bin/__dispatch.sh
index fa954ae29c..c0f662a81f 100755
--- a/bin/__dispatch.sh
+++ b/bin/__dispatch.sh
@@ -10,51 +10,51 @@ readonly REPO_ROOT=$(dirname "$0")/..
 TARGET_TOOL=$(basename "$0")
 
 case "${TARGET_TOOL}" in
-  terraform)
-    attr="third_party.terraform-gcp"
-    ;;
-  kontemplate)
-    attr="kontemplate"
-    ;;
-  stern)
-    attr="third_party.stern"
-    ;;
-  aoc2019)
-    attr="fun.aoc2019.${1}"
-    ;;
-  rink)
-    attr="third_party.rink"
-    ;;
   age)
     attr="third_party.age"
     ;;
   age-keygen)
     attr="third_party.age"
     ;;
-  rebuilder)
-    attr="users.tazjin.nixos.rebuilder"
-    ;;
-  meson)
-    attr="third_party.meson"
+  aoc2019)
+    attr="fun.aoc2019.${1}"
     ;;
-  ninja)
-    attr="third_party.ninja"
+  depot-build)
+    attr="tools.depot-build"
     ;;
   git-bug)
     attr="third_party.git-bug"
     ;;
-  depot-build)
-    attr="tools.depot-build"
-    ;;
   gerrit)
     attr="tools.gerrit-cli"
     ;;
   hash-password)
     attr="tools.hash-password"
     ;;
+  kontemplate)
+    attr="kontemplate"
+    ;;
+  meson)
+    attr="third_party.meson"
+    ;;
+  ninja)
+    attr="third_party.ninja"
+    ;;
   rebuild-system)
     attr="ops.nixos.rebuild-system"
     ;;
+  rebuilder)
+    attr="users.tazjin.nixos.rebuilder"
+    ;;
+  rink)
+    attr="third_party.rink"
+    ;;
+  stern)
+    attr="third_party.stern"
+    ;;
+  terraform)
+    attr="third_party.terraform-gcp"
+    ;;
   *)
     echo "The tool '${TARGET_TOOL}' is currently not installed in this repository."
     exit 1