sysupdate: change source repo to https://code.9front.org/hg/plan9front
code.google.com is shutting down, the new repository is on code.9front.org.
This commit is contained in:
parent
9d3bc16469
commit
ebf43c0a0b
1 changed files with 4 additions and 3 deletions
|
@ -1,16 +1,17 @@
|
|||
#!/bin/rc
|
||||
rfork n
|
||||
rfork en
|
||||
source=https://code.9front.org/hg/plan9front
|
||||
cd /
|
||||
if(! test -d .hg)
|
||||
bind -ac /dist/plan9front /
|
||||
while(! ~ $#* 0){
|
||||
switch($1){
|
||||
case -i
|
||||
hg incoming
|
||||
hg incoming $source
|
||||
case *
|
||||
echo usage: sysupdate '[-i]' >[1=2]
|
||||
exit usage
|
||||
}
|
||||
shift
|
||||
}
|
||||
hg -v pull -u
|
||||
hg -v pull -u $source
|
||||
|
|
Loading…
Reference in a new issue