commit df6688fd0471f3a34d47c8891ac2177f6f1559e9
parent a342d40b9867c8f5d46328858f0b3578e39b63f3
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