rl-rock 1.3.1 → 1.3.3
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 +8 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2189,7 +2189,13 @@ var Sandbox = class extends AbstractSandbox {
|
|
|
2189
2189
|
tmpSession = session;
|
|
2190
2190
|
}
|
|
2191
2191
|
const tmpFile = outputFile ?? `/tmp/tmp_${timestamp}.out`;
|
|
2192
|
-
|
|
2192
|
+
let effectiveCmd;
|
|
2193
|
+
if (cmd.includes("\n")) {
|
|
2194
|
+
effectiveCmd = `bash -c $'${cmd.replace(/'/g, "'\\''")}'`;
|
|
2195
|
+
} else {
|
|
2196
|
+
effectiveCmd = cmd;
|
|
2197
|
+
}
|
|
2198
|
+
const nohupCommand = `nohup ${effectiveCmd} < /dev/null > ${tmpFile} 2>&1 & echo __ROCK_PID_START__$!__ROCK_PID_END__;disown`;
|
|
2193
2199
|
const response = await this.runInSession({
|
|
2194
2200
|
command: nohupCommand,
|
|
2195
2201
|
session: tmpSession,
|
|
@@ -2412,7 +2418,7 @@ var Sandbox = class extends AbstractSandbox {
|
|
|
2412
2418
|
const fileName = sourcePath.split("/").pop() ?? "file";
|
|
2413
2419
|
const objectName = `${timestamp}-${fileName}`;
|
|
2414
2420
|
await this.ossBucket.put(objectName, sourcePath);
|
|
2415
|
-
const signedUrl = this.ossBucket.signatureUrl(objectName, 600);
|
|
2421
|
+
const signedUrl = this.ossBucket.signatureUrl(objectName, { expires: 600 });
|
|
2416
2422
|
const downloadCmd = `wget -c -O '${targetPath}' '${signedUrl}'`;
|
|
2417
2423
|
await this.arun(downloadCmd, { mode: "nohup", waitTimeout: 600 });
|
|
2418
2424
|
const checkResult = await this.execute({ command: ["test", "-f", targetPath], timeout: 60 });
|