@blaxel/core 0.2.28 → 0.2.29-preview.64
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/dist/sandbox/sandbox.js +5 -1
- package/package.json +1 -1
package/dist/sandbox/sandbox.js
CHANGED
|
@@ -98,7 +98,11 @@ class SandboxInstance {
|
|
|
98
98
|
});
|
|
99
99
|
const instance = new SandboxInstance(data);
|
|
100
100
|
// TODO remove this part once we have a better way to handle this
|
|
101
|
-
|
|
101
|
+
try {
|
|
102
|
+
await instance.fs.ls('/');
|
|
103
|
+
}
|
|
104
|
+
catch {
|
|
105
|
+
}
|
|
102
106
|
return instance;
|
|
103
107
|
}
|
|
104
108
|
static async get(sandboxName) {
|