@openduo/searchis 0.2.1 → 0.3.1
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.
|
Binary file
|
|
Binary file
|
package/bin/linux-amd64/searchis
CHANGED
|
Binary file
|
package/bin/linux-arm64/searchis
CHANGED
|
Binary file
|
|
Binary file
|
package/install.js
CHANGED
|
@@ -29,9 +29,9 @@ const src = path.join(__dirname, "bin", subdir, `searchis${ext}`);
|
|
|
29
29
|
const dst = path.join(__dirname, "bin", `searchis${ext}`);
|
|
30
30
|
|
|
31
31
|
if (!fs.existsSync(src)) {
|
|
32
|
-
|
|
33
|
-
console.
|
|
34
|
-
process.exit(
|
|
32
|
+
// In dev/CI the binaries aren't built yet — not an error
|
|
33
|
+
console.log(`Binary not found: ${src} (run build.sh to compile)`);
|
|
34
|
+
process.exit(0);
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
fs.mkdirSync(path.dirname(dst), { recursive: true });
|