Skip to content

Commit

Permalink
Merge pull request #2169 from lf-lang/use-login-shell
Browse files Browse the repository at this point in the history
Use login shell so ~/.bash_profile is sourced
  • Loading branch information
edwardalee authored Jan 27, 2024
2 parents 3c2cc38 + 9786b68 commit fb0ab5c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ public void doGenerate(List<FederateInstance> federates, RtiConfig rtiConfig) {
private String getSetupCode() {
return String.join(
"\n",
"#!/bin/bash",
"#!/bin/bash -l",
"# Launcher for federated " + fileConfig.name + ".lf Lingua Franca program.",
"# Uncomment to specify to behave as close as possible to the POSIX standard.",
"# set -o posix",
Expand Down

0 comments on commit fb0ab5c

Please sign in to comment.