Remove unnecessary slash
This commit is contained in:
parent
a31877e990
commit
a4df5185d2
3 changed files with 5 additions and 5 deletions
|
@ -25,10 +25,10 @@ pub fn main() {
|
|||
for arg in sh_args.iter() {
|
||||
command.arg(arg);
|
||||
}
|
||||
|
||||
|
||||
command.env("HOME", "initfs:");
|
||||
command.env("PWD", "initfs:bin/");
|
||||
command.env("PATH", "initfs:bin/");
|
||||
command.env("PWD", "initfs:bin");
|
||||
command.env("PATH", "initfs:bin");
|
||||
command.env("COLUMNS", "80");
|
||||
command.env("LINES", "30");
|
||||
command.env("TTY", &tty);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue