Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
Use single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
McModknower authored and Tristan-H11 committed Mar 7, 2022
1 parent d2e6666 commit 4fe977c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/desktop/windows/terminal/terminal-states.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export abstract class CommandTerminalState implements TerminalState {
// Only successful and not-flagged commands will be shown in the protocol.
if (!this.commands[command].hideFromProtocol) {
if (args.length>0) {
this.protocol.unshift(command + " " + args.join(" "));
this.protocol.unshift(command + ' ' + args.join(' '));
} else {
this.protocol.unshift(command);
}
Expand Down

0 comments on commit 4fe977c

Please sign in to comment.