Remove unnecessary slash

This commit is contained in:
Jeremy Soller 2016-09-26 17:39:58 -06:00
parent a31877e990
commit a4df5185d2
3 changed files with 5 additions and 5 deletions

View file

@ -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);