Skip to content

Commit 37cb348

Browse files
committed
remove some brackets
I'm stupid :D Brackets on line 34 not need :)
1 parent d309263 commit 37cb348

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ssh_commands.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var conn = getRemoteSSHConnection();
3131
var stdout = {};
3232
var stderr = {};
3333
var command = prompt("Type a command: ");
34-
if(command.trim() == "") { command = "ls -la" }
34+
if(command.trim() == "") command = "ls -la";
3535
var retval = conn.runCommand(command, false, stdout, stderr);
3636

3737
ko.notifications.add('Remote Run Command',

0 commit comments

Comments
 (0)