tessl 0.91.0 → 0.92.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/tessl.js +2 -2
- package/package.json +1 -1
package/bin/tessl.js
CHANGED
|
@@ -132,7 +132,7 @@ TaNvYdQeUrdR5LGZIaYN4XziIK27qwZEl4xJIEB+sqgsx2limHUjf/OKwA==
|
|
|
132
132
|
`
|
|
133
133
|
}
|
|
134
134
|
];
|
|
135
|
-
var RELEASE_VERIFICATION_ENABLED =
|
|
135
|
+
var RELEASE_VERIFICATION_ENABLED = true;
|
|
136
136
|
|
|
137
137
|
// installer/src/path.ts
|
|
138
138
|
import { existsSync } from "node:fs";
|
|
@@ -441,7 +441,7 @@ function printUnsupportedPlatformMessage() {
|
|
|
441
441
|
async function prepareBinary() {
|
|
442
442
|
const tesslBinPath = getTesslBinPath();
|
|
443
443
|
const existingBinary = await getExistingBinaryPath(tesslBinPath);
|
|
444
|
-
const installerVersion = "0.
|
|
444
|
+
const installerVersion = "0.92.0";
|
|
445
445
|
const isTestOrDevBuild = installerVersion.includes("test") || installerVersion.includes("dev");
|
|
446
446
|
let versionMismatch = false;
|
|
447
447
|
if (isTestOrDevBuild && existingBinary) {
|