about summary refs log tree commit diff stats
path: root/subx/drun
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-04-27 21:33:26 -0700
committerKartik Agaram <vc@akkartik.com>2019-04-27 21:40:12 -0700
commitf539a27245d31f4ba3c90389dce1f5f4d372bd27 (patch)
tree63ad429ff673c9c0febef165b0dc0e93c8adaee8 /subx/drun
parent62a71b89a88800c1966980db1b0ca01ef728c78e (diff)
downloadmu-f539a27245d31f4ba3c90389dce1f5f4d372bd27.tar.gz
5131
Rename '--map' to '--debug'.
Diffstat (limited to 'subx/drun')
-rwxr-xr-xsubx/drun4
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/drun b/subx/drun
index b094f995..71b2f0e0 100755
--- a/subx/drun
+++ b/subx/drun
@@ -12,11 +12,11 @@ fi
 
 case $1 in
   ex*)
-    ./subx --map --trace run examples/$*
+    ./subx --debug --trace run examples/$*
     exit $?
     ;;
   *)
-    ./subx --map --trace run apps/$*
+    ./subx --debug --trace run apps/$*
     exit $?
     ;;
 esac