Skip to content

Commit

Permalink
Merge pull request #2245 from lf-lang/fix-ssh-command
Browse files Browse the repository at this point in the history
Added newline after trailing slash
  • Loading branch information
edwardalee authored Mar 15, 2024
2 parents 9cab7b4 + 86a41e9 commit 09d75cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ private String getRemoteLaunchCode(
" echo \"The source code can be found in org.lflang/src/lib/core/federated/RTI\"",
" exit 1",
" fi",
" " + rtiLaunchString + " 2>&1 | tee -a " + logFileName + "' &",
" " + rtiLaunchString + "\n 2>&1 | tee -a " + logFileName + "' &",
"# Store the PID of the channel to RTI",
"RTI=$!",
"# Wait for the RTI to boot up before",
Expand Down

0 comments on commit 09d75cb

Please sign in to comment.