commit d6631ab05f9868717e095f9b83cc7e7f28d20c7b
parent d30b0e8a8e8a087a9f82f1945d9b79026aef76b9
Author: Chris Bracken <chris@bracken.jp>
Date: Wed, 27 Nov 2024 09:34:37 -0800
zsh: correct cc_ios alias
Being one of the oldest targets, we'd unfortunately left the
architecture implicit on it and never got round to fixing it.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.config/zsh/aliases b/.config/zsh/aliases
@@ -31,6 +31,6 @@ alias fbug='gh -R flutter/flutter issue'
CC_FLUTTER="$HOME/Developer/flutter/engine/src/compile_commands.json"
alias cc_host="rm -f $CC_FLUTTER && ln -s out/host_debug_unopt_arm64/compile_commands.json $CC_FLUTTER"
-alias cc_ios="rm -f $CC_FLUTTER && ln -s out/ios_debug_unopt_arm64/compile_commands.json $CC_FLUTTER"
+alias cc_ios="rm -f $CC_FLUTTER && ln -s out/ios_debug_unopt/compile_commands.json $CC_FLUTTER"
alias cc_sim="rm -f $CC_FLUTTER && ln -s out/ios_debug_sim_unopt_arm64/compile_commands.json $CC_FLUTTER"
unset CC_FLUTTER