Download:
child 4:062c539f02c4
parent 2:201f7e7e5ec8
3:fcad8f89072b
Anton Shestakov <engored@ya.ru>, Sat, 02 May 2015 03:57:41 +0800
.sh: old-style variable export for compatibility

2 файлов изменено, 5 вставок(+), 3 удалений(-) [+]
deploy.sh file | annotate | diff | comparison | revisions
update.sh file | annotate | diff | comparison | revisions
--- a/deploy.sh Sat May 02 02:56:30 2015 +0800
+++ b/deploy.sh Sat May 02 03:57:41 2015 +0800
@@ -3,11 +3,12 @@
mkdir -p ./data
-export HGPLAIN=1
-
HGURL='http://selenic.com/hg'
TESTURL='http://selenic.com/hg'
+HGPLAIN=1
+export HGPLAIN
+
hg clone "$HGURL" ./data/testhg
hg archive -R ./data/testhg ./data/newesthg
make --directory ./data/newesthg local
--- a/update.sh Sat May 02 02:56:30 2015 +0800
+++ b/update.sh Sat May 02 03:57:41 2015 +0800
@@ -1,6 +1,7 @@
#!/bin/sh
-export HGPLAIN=1
+HGPLAIN=1
+export HGPLAIN
nodes=`./data/newesthg/hg incoming -R ./data/testhg --quiet -T '{node}\n'`
./data/newesthg/hg pull -R ./data/testhg