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 27930cd commit 039f12eCopy full SHA for 039f12e
bin/force_precompile
@@ -2,6 +2,12 @@
2
# SPDX-FileCopyrightText: 2025 Uwe Fechner
3
# SPDX-License-Identifier: MIT
4
5
+julia_version=$(julia --version | awk '{print($3)}')
6
+julia_major=${julia_version:0:3}
7
+if [[ $julia_major == "1.1" ]]; then
8
+ julia_major=${julia_version:0:4}
9
+fi
10
+
11
cd ~
-rm -rf .julia/compiled/v1.11/KiteModels
-rm -rf .julia/compiled/v1.11/SymbolicAWEModels
12
+rm -rf .julia/compiled/v${julia_major}/KiteModels
13
+rm -rf .julia/compiled/v${julia_major}/SymbolicAWEModels
0 commit comments