Skip to content

Commit 987efd1

Browse files
committed
always run using KiteModels
1 parent 52ec8c6 commit 987efd1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bin/run_julia

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ fi
3333
if [[ $branch != "" ]]; then
3434
if test -f "bin/kps-image-${julia_major}-${branch}.so"; then
3535
echo "Found system image!"
36-
julia -J bin/kps-image-${julia_major}-${branch}.so -t 1 $GCT --project
36+
julia -J bin/kps-image-${julia_major}-${branch}.so -t 1 $GCT --project -i -e 'using KiteModels'
3737
else
38-
julia $GCT --project
38+
julia $GCT --project -i -e 'using KiteModels'
3939
fi
4040
else
4141
if test -f "bin/kps-image-${julia_major}.so"; then
4242
echo "Found system image!"
43-
julia -J bin/kps-image-${julia_major}.so -t 1 $GCT --project
43+
julia -J bin/kps-image-${julia_major}.so -t 1 $GCT --project -i -e 'using KiteModels'
4444
else
45-
julia $GCT --project
45+
julia $GCT --project -i -e 'using KiteModels'
4646
fi
4747
fi

0 commit comments

Comments
 (0)