Skip to content

Commit

Permalink
simplify generated cmd file
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaslischka committed Jun 4, 2019
1 parent 25af8f3 commit 10532e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion StartLauncher.App/DataAccess/ExecutablesAccessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void EnsureCommands()

var streamWriter = new StreamWriter(commandFileInfo.FullName);
streamWriter.WriteLine("echo off");
streamWriter.WriteLine("start \"\" /B " + command.Command);
streamWriter.WriteLine(command.Command);
streamWriter.Close();

AddShortcutForCommand(command);
Expand Down

0 comments on commit 10532e9

Please sign in to comment.