slopcode 0.2.145 → 0.2.146
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/android-runtime/arm64/bin/slopcode +0 -0
- package/android-runtime/arm64/bin/slopcode-android-host +0 -0
- package/android-runtime/x64/bin/slopcode +0 -0
- package/android-runtime/x64/bin/slopcode-android-host +0 -0
- package/bin/slopcode +4 -1
- package/bundle/index.js +1719 -1885
- package/bundle/parser.worker.js +1 -34
- package/bundle/worker.js +1613 -1741
- package/package.json +12 -12
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/slopcode
CHANGED
|
@@ -357,7 +357,10 @@ function findBinary(startDir) {
|
|
|
357
357
|
}
|
|
358
358
|
}
|
|
359
359
|
|
|
360
|
-
const resolved =
|
|
360
|
+
const resolved =
|
|
361
|
+
libc() === "bionic"
|
|
362
|
+
? embeddedAndroidBinary() || resolveBinary() || findBinary(scriptDir)
|
|
363
|
+
: resolveBinary() || findBinary(scriptDir)
|
|
361
364
|
if (!resolved) {
|
|
362
365
|
if (libc() === "bionic") {
|
|
363
366
|
console.error(termuxMessage())
|