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 48382ac commit 9384a71Copy full SHA for 9384a71
tool/aci/check_gdl.sh
@@ -119,7 +119,7 @@ files=$(get_target_files "$PWD")
119
120
# Iterate over the files
121
for file in $files; do
122
- output=$(("$sparrow_godel_script" "$file" -p "$sparrow_lib_1_0" -o "${file%.*}_tmp.gdl") 2>&1)
+ output=$(("$sparrow_godel_script" "$file" -p "$sparrow_lib_1_0" --semantic-only 2>&1)
123
124
# Check if the output is not empty
125
if [ -n "$output" ]; then
@@ -130,9 +130,6 @@ for file in $files; do
130
else
131
echo "$file build successful"
132
fi
133
-
134
- # Remove temporary file
135
- rm -f "${file%.*}_tmp.gdl"
136
done
137
138
exit 0
0 commit comments