Skip to content

Commit e0731b6

Browse files
committed
cp dines
1 parent 260b0e2 commit e0731b6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/commands/devbox/scp.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,9 @@ export async function scpFiles(src: string, dst: string, options: SCPOptions) {
237237
const configHeader =
238238
"# Temporary SSH config generated by `rli devbox scp` for a dual-remote transfer.\n" +
239239
"# Safe to delete.\n\n";
240-
await writeFile(configPath, configHeader + configContent, { mode: 0o600 });
240+
await writeFile(configPath, configHeader + configContent, {
241+
mode: 0o600,
242+
});
241243

242244
try {
243245
scpCommand = buildDualRemoteSCPCommand({

0 commit comments

Comments
 (0)