mirror of
git://git.9front.org/plan9front/plan9front
synced 2025-01-12 11:10:06 +00:00
0d378e905e
always explicitely execute installer modules with ./name instead of relying that the path contians the dot.
14 lines
255 B
Bash
Executable file
14 lines
255 B
Bash
Executable file
#!/bin/rc
|
|
|
|
cd /bin/inst
|
|
. ./defs
|
|
fn sigint { }
|
|
|
|
coherence
|
|
|
|
# we run this while() here so that ctl-d won''t exit from us -- it''ll only exit main!
|
|
# main contains a while() loop too, to avoid the hit of
|
|
# continually reexecing from here.
|
|
|
|
while()
|
|
./main
|