File: push-dry-run.sh

package info (click to toggle)
darcs 2.0.2-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 6,400 kB
  • ctags: 1,048
  • sloc: haskell: 24,937; perl: 9,736; sh: 3,369; ansic: 1,913; makefile: 17; xml: 14
file content (28 lines) | stat: -rw-r--r-- 546 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env bash
set -ev

# For issue855: wish: avoid taking lock if using --dry-run
chmod -R u+w temp2 || :
rm -rf temp1 temp2
mkdir temp1
cd temp1
darcs init
cd ..
mkdir temp2
cd temp2
darcs init
touch x
darcs add x
darcs record -am "test"
cd ..
chmod -R u-w temp2
cd temp2
# need to capture this failure so that we can still
# chmod -R u+w the directory even if we fail
darcsexit=0
darcs push --dry-run ../temp1 || darcsexit=$?
cd ..
chmod -R u+w temp2 # so that other scripts can cleanup
if [ $darcsexit -ne 0 ]; then
  exit $darcsexit
fi