@fastgpt-sdk/sandbox-adapter 0.0.10 → 0.0.11
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/index.js +0 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -846,7 +846,6 @@ class SealosDevboxAdapter extends BaseSandboxAdapter {
|
|
|
846
846
|
}
|
|
847
847
|
async execute(command, options) {
|
|
848
848
|
const cmd = options?.workingDirectory ? ["sh", "-lc", `cd ${options.workingDirectory} && ${command}`] : ["sh", "-lc", command];
|
|
849
|
-
console.log(cmd, 2323);
|
|
850
849
|
try {
|
|
851
850
|
const res = await this.api.exec(this._id, {
|
|
852
851
|
command: cmd,
|
package/package.json
CHANGED