home: hub: zuo

Download patch

ref: 46187f1c98fd67a081ccf0d638807f0624234da9
parent: 721b30334fb8b6ccfa5cadf2f6e620dc8e8e1327
author: grobe0ba <grobe0ba@tcp80.org>
date: Wed Jun 19 11:34:22 CDT 2024

fix indentation

--- a/lib/zuo/shell.zuo
+++ b/lib/zuo/shell.zuo
@@ -14,8 +14,8 @@
      (cond
        [(eq? (hash-ref (runtime-env) 'system-type) 'unix)
         (process "/bin/sh" "-c" command options)]
-	   [(eq? (hash-ref (runtime-env) 'system-type) 'plan9)
-	    (process "/bin/ape/sh" "-c" command options)]
+       [(eq? (hash-ref (runtime-env) 'system-type) 'plan9)
+        (process "/bin/ape/sh" "-c" command options)]
        [else
         (let ([cmd (build-path (hash-ref (runtime-env) 'sys-dir) "cmd.exe")])
           (process cmd (~a cmd " /c \"" command "\"") (hash-set options 'exact? #t)))]))))