sysupdate: revert thumbstone temporarily
experiencing some issues with git9 transition... we likely need to update git9 again before doing another attempt...
This commit is contained in:
parent
706aad3d94
commit
f9ae020332
1 changed files with 13 additions and 31 deletions
|
@ -1,35 +1,17 @@
|
||||||
#!/bin/rc
|
#!/bin/rc
|
||||||
|
|
||||||
rfork en
|
rfork en
|
||||||
|
source=https://code.9front.org/hg/plan9front
|
||||||
updating=()
|
|
||||||
nl='
|
|
||||||
'
|
|
||||||
if(! test -d /dist/plan9front/.git){
|
|
||||||
>[1=2] echo 'end of line for hg: moving to git.'
|
|
||||||
updating=1
|
|
||||||
|
|
||||||
if(! test -f /bin/git/pull){
|
|
||||||
>[1=2] echo 'git is required:'
|
|
||||||
>[1=2] echo ' cd /sys/src/cmd/git && mk install'
|
|
||||||
exit gitless
|
|
||||||
}
|
|
||||||
|
|
||||||
>[1=2] echo ' fetching snapshot...'
|
|
||||||
cd /dist/plan9front
|
|
||||||
hget http://git.9front.org/static/plan9front-seed.tar.gz | tar xz
|
|
||||||
mv .git-snap .git
|
|
||||||
|
|
||||||
git/fs
|
|
||||||
git/walk >/dev/null
|
|
||||||
>[1=2] echo ' pulling with git...'
|
|
||||||
}
|
|
||||||
|
|
||||||
cd /
|
cd /
|
||||||
if(! test -d .git)
|
if(! test -d .hg)
|
||||||
bind -ac /dist/plan9front /
|
bind -ac /dist/plan9front /
|
||||||
git/pull -u gits://git.9front.org/plan9front/plan9front
|
while(! ~ $#* 0){
|
||||||
|
switch($1){
|
||||||
if(~ $updating 1)
|
case -i
|
||||||
>[1=2] echo 'got git: you may remove /dist/plan9front/.hg'
|
hg incoming $source
|
||||||
exit ''
|
case *
|
||||||
|
echo usage: sysupdate '[-i]' >[1=2]
|
||||||
|
exit usage
|
||||||
|
}
|
||||||
|
shift
|
||||||
|
}
|
||||||
|
hg -v pull -u $source
|
||||||
|
|
Loading…
Reference in a new issue