We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39ffb8d commit f6a292bCopy full SHA for f6a292b
src/SPC/store/scripts/zig-cc.sh
@@ -34,11 +34,11 @@ status=$?
34
if [[ $status -eq 0 ]]; then
35
echo "$output"
36
exit 0
37
-else
38
- if grep -q "version '.*' in target triple" <<< "$output"; then
39
- output=$(grep -v "version '.*' in target triple" <<< "$output")
40
- status=0
41
- fi
+fi
42
43
- exec zig cc $TARGET $COMPILER_EXTRA "${PARSED_ARGS[@]}"
+if grep -q "version '.*' in target triple" <<< "$output"; then
+ output=$(grep -v "version '.*' in target triple" <<< "$output")
+ status=0
44
fi
+
+exec zig cc $TARGET $COMPILER_EXTRA "${PARSED_ARGS[@]}"
0 commit comments