diff options
| author | Ramakrishnan Muthukrishnan <ram@rkrishnan.org> | 2015-05-31 08:05:59 +0530 |
|---|---|---|
| committer | Ramakrishnan Muthukrishnan <ram@rkrishnan.org> | 2015-05-31 08:05:59 +0530 |
| commit | 5c0f8147ea7f9ebf77ceaca86b122fac886ee742 (patch) | |
| tree | 3be64691b15091e067e0942ff0b2c4baa4b05255 | |
| parent | 19c1b9563e510e86f2b7b53748f60f8ac761e845 (diff) | |
mount.b: load the Dial module without which mount throws an error
| -rw-r--r-- | appl/cmd/mount.b | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/appl/cmd/mount.b b/appl/cmd/mount.b index 9cac7da5..d41cb169 100644 --- a/appl/cmd/mount.b +++ b/appl/cmd/mount.b @@ -45,6 +45,9 @@ nomod(mod: string) init(ctxt: ref Draw->Context, args: list of string) { sys = load Sys Sys->PATH; + dial = load Dial Dial->PATH; + if(dial == nil) + nomod(Dial->PATH); arg := load Arg Arg->PATH; if(arg == nil) nomod(Arg->PATH); |
