]> Untitled Git - lemmy.git/blobdiff - scripts/compilation_benchmark.sh
Upgrade Rust version
[lemmy.git] / scripts / compilation_benchmark.sh
index 76003798012eb20be093596333c5409947174fa4..6d454795d4964e298ba7468c71ed231d71f5a419 100755 (executable)
@@ -12,7 +12,7 @@ for ((i=0; i < times; i++)) ; do
     cargo clean
     echo "cargo build"
     start=$(date +%s.%N)
-    RUSTC_WRAPPER='' cargo +1.47.0 build -q
+    RUSTC_WRAPPER='' cargo build -q
     end=$(date +%s.%N)
     echo "Finished iteration $i after $(bc <<< "scale=0; $end - $start") seconds"
     duration=$(bc <<< "$duration + $end - $start")