diff options
author | rsc <devnull@localhost> | 2004-06-09 14:05:29 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-06-09 14:05:29 +0000 |
commit | 4c2a6585b30930f6bff71744f44aad31aefafd33 (patch) | |
tree | b514881f0b9bfe952f6937866c087fe7b02c9245 /bin/web | |
parent | 4f604b1843899782071d3dedbb31c6a2e441213f (diff) | |
download | plan9port-4c2a6585b30930f6bff71744f44aad31aefafd33.tar.gz plan9port-4c2a6585b30930f6bff71744f44aad31aefafd33.tar.bz2 plan9port-4c2a6585b30930f6bff71744f44aad31aefafd33.zip |
handle local files better
Diffstat (limited to 'bin/web')
-rwxr-xr-x | bin/web | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -25,7 +25,9 @@ else do if [ -f "$i" ] then - i=file://`pwd`/$i + p=`pwd` + i=`cleanname -d $p $i` + i=file://$i fi plumb1 $i done |