diff options
author | silverwind | 2022-07-14 10:58:14 +0200 |
---|---|---|
committer | GitHub | 2022-07-14 16:58:14 +0800 |
commit | 7740779b28e53cdf0a9780a39af71e3ee353e170 (patch) | |
tree | d899b5969094cab3bfb6f06a75b9da0b280b598a /package.json | |
parent | aec6b30e2a599645b563425595ab66fdc5d3928a (diff) |
Fix versions check for busybox `sh` (#20358)
`printf` in busybox emits a ugly 'invalid number' error when formatting
string variables are present. Avoid that by reducing the go version
check to just two digits, which ought to be enough as patch-level go
versions are meant to be compatible. Avoid error on node-check as well.
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json index 1ec816fc5..b55da05b3 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "private": true, "type": "module", "engines": { - "node": ">= 14" + "node": ">= 14.0.0" }, "dependencies": { "@claviska/jquery-minicolors": "2.3.6", |