Add a newline to the bash script for exec

This commit is contained in:
David Fowler 2015-10-21 00:35:28 -07:00
parent 62e586549d
commit 7191080caf

View file

@ -179,7 +179,8 @@ while [ -h ""$SOURCE"" ]; do # resolve $SOURCE until the file is no longer a sym
[[ $SOURCE != /* ]] && SOURCE=""$DIR/$SOURCE"" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
done
DIR=""$( cd -P ""$( dirname ""$SOURCE"" )"" && pwd )""
exec ""$DIR/corerun"" ""$DIR/{context.ProjectFile.Name}.exe"" $*";
exec ""$DIR/corerun"" ""$DIR/{context.ProjectFile.Name}.exe"" $*
";
File.WriteAllText(outputExe, script);