mirror of
https://github.com/sigmasternchen/Wish
synced 2025-03-15 15:38:54 +00:00
some small mistakes
This commit is contained in:
parent
001f0cea85
commit
364cddd663
1 changed files with 2 additions and 2 deletions
|
@ -91,7 +91,7 @@ WshClass.prototype.iCommands = {
|
||||||
return 0;
|
return 0;
|
||||||
},
|
},
|
||||||
"pwd": function(args, own) {
|
"pwd": function(args, own) {
|
||||||
own.files['stdout'].write(this.Environment.global['PWD'] + "\n");
|
own.files['stdout'].write(own.Environment.global['PWD'] + "\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -103,7 +103,7 @@ WshClass.prototype.main = function(args) {
|
||||||
Kernel.Scheduler.add(this);
|
Kernel.Scheduler.add(this);
|
||||||
this.uid = Kernel.ProcessManager.getUserByPID(this.pid);
|
this.uid = Kernel.ProcessManager.getUserByPID(this.pid);
|
||||||
this.username = Kernel.UserManager.getUserById(this.uid).username;
|
this.username = Kernel.UserManager.getUserById(this.uid).username;
|
||||||
if (args > 1) {
|
if (args.length > 1) {
|
||||||
this.Environment.global['HOME'] = args[1];
|
this.Environment.global['HOME'] = args[1];
|
||||||
} else if (!this.Environment.global['HOME']) {
|
} else if (!this.Environment.global['HOME']) {
|
||||||
this.Environment.global['HOME'] = "/";
|
this.Environment.global['HOME'] = "/";
|
||||||
|
|
Loading…
Reference in a new issue