pinokiod 3.19.55 → 3.19.56
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/kernel/shell.js +1 -1
- package/package.json +1 -1
package/kernel/shell.js
CHANGED
|
@@ -275,7 +275,7 @@ class Shell {
|
|
|
275
275
|
let transformed_chunks = []
|
|
276
276
|
for(let chunk of chunks) {
|
|
277
277
|
if (path.isAbsolute(chunk)) {
|
|
278
|
-
let transformed =
|
|
278
|
+
let transformed = normalize(chunk)
|
|
279
279
|
transformed = "/" + transformed.replace(":", "")
|
|
280
280
|
transformed_chunks.push(transformed)
|
|
281
281
|
} else {
|