Skip to content

Commit

Permalink
termianl: fix env for ksh
Browse files Browse the repository at this point in the history
  • Loading branch information
visualfc committed Aug 10, 2023
1 parent 547be22 commit c62265c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liteidex/src/plugins/terminal/terminal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ void Terminal::loadEnv(int index)
list << QString("export %1=\"%2\"").arg(key).arg(env.value(key));
}
file.write("#!/bin/sh\n");
file.write("echo "+term_bold("Load environment form LiteIDE.").toUtf8());
file.write("echo \"load environment form LiteIDE.\"");
file.write("\n");
file.write(list.join("\n").toUtf8());
file.write("\n");
Expand Down

0 comments on commit c62265c

Please sign in to comment.