Skip to content

Commit

Permalink
Removed console log
Browse files Browse the repository at this point in the history
  • Loading branch information
jeawhanlee committed Apr 4, 2024
1 parent d821fff commit 4140e38
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion utils/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ export async function rename(oldName: string, newName: string): Promise<void> {
}

if(configurations.type === ServerType.external) {
console.log(`ssh -i ${configurations.ssh.key} ${configurations.ssh.username}@${configurations.ssh.address} "mv ${oldName} ${newName}"`);
await exec(`ssh -i ${configurations.ssh.key} ${configurations.ssh.username}@${configurations.ssh.address} "mv ${oldName} ${newName}"`);
return;
}
Expand Down

0 comments on commit 4140e38

Please sign in to comment.