summaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorAlexander Gill <alexandergill@protonmail.com>2023-02-11 23:30:35 +0000
committerAlexander Gill <alexandergill@protonmail.com>2023-02-11 23:30:35 +0000
commit0b119339eb15f92bd6b4fe111f0678f01e972e3b (patch)
tree51c30661b038351fc598e6e8bfb596ebf1c34a85 /install.sh
parent4bdd3c036bb6e532cb90b28a0502ccfda3ec4f2b (diff)
fix(installation): bump `MinRustVersion` to 1.58
this is the earliest minor version that compiled without errors
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 06f9464..1929691 100755
--- a/install.sh
+++ b/install.sh
@@ -124,7 +124,7 @@ function vercomp() {
}
RustVersion=$(rustc --version | cut -d " " -f 2)
-MinRustVersion=1.56
+MinRustVersion=1.58
vercomp "$RustVersion" $MinRustVersion || ec=$?
if [ ${ec:-0} -eq 2 ]
then