Skip to content

Commit dd70c1f

Browse files
authored
Merge pull request #196 from roc-lang/roc-dev-build-flags
pass ROC_BUILD_FLAGS to roc dev too
2 parents 952bc7d + fe41214 commit dd70c1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/all_tests.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ for roc_file in $EXAMPLES_DIR*.roc; do
9292
if [ "$base_file" == "path.roc" ]; then
9393
absolute_roc=$(which $ROC | xargs realpath)
9494
cd $EXAMPLES_DIR
95-
$absolute_roc dev $base_file
95+
$absolute_roc dev $base_file $ROC_BUILD_FLAGS
9696
cd ..
9797
else
98-
$ROC dev $roc_file
98+
$ROC dev $roc_file $ROC_BUILD_FLAGS
9999
fi
100100
done
101101

0 commit comments

Comments
 (0)