@scrypted/server 0.94.28 → 0.94.29
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/packaged-python.js +1 -1
- package/package.json +1 -1
package/bin/packaged-python.js
CHANGED
@@ -14,7 +14,7 @@ async function pipInstall(python, pkg) {
|
|
14
14
|
}
|
15
15
|
|
16
16
|
module.exports.installScryptedServerRequirements = async function installScryptedServerRequirements(version, dest) {
|
17
|
-
const py = new PortablePython(version || require('./packaged-python'), dest);
|
17
|
+
const py = new PortablePython(version || require('./packaged-python').version, dest);
|
18
18
|
await py.install();
|
19
19
|
let python = py.executablePath;
|
20
20
|
|