##// END OF EJS Templates
merge with -stable
Benoit Boissinot -
r7518:dd66d161 merge default
parent child Browse files
Show More
@@ -14,7 +14,11 b' do_push()'
14 cat acl.config
14 cat acl.config
15 echo '"""'
15 echo '"""'
16 fi
16 fi
17 LOGNAME=$user hg --cwd a --debug push ../b
17 # On AIX /etc/profile sets LOGNAME read-only. So
18 # LOGNAME=$user hg --cws a --debug push ../b
19 # fails with "This variable is read only."
20 # Use env to work around this.
21 env LOGNAME=$user hg --cwd a --debug push ../b
18 hg --cwd b rollback
22 hg --cwd b rollback
19 hg --cwd b --quiet tip
23 hg --cwd b --quiet tip
20 echo
24 echo
General Comments 0
You need to be logged in to leave comments. Login now