File: init.sh

package info (click to toggle)
darcs 2.18.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,960 kB
  • sloc: haskell: 47,748; sh: 13,466; ansic: 447; perl: 134; makefile: 8
file content (35 lines) | stat: -rw-r--r-- 744 bytes parent folder | download | duplicates (5)
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
29
30
31
32
33
34
35
#!/usr/bin/env bash

. lib

rm -rf temp1 temp2

mkdir temp1
cd temp1
darcs init
test -d _darcs
not darcs init
cd ..

# Some tests for the repodir flag
mkdir temp2
darcs init --repodir temp2
test -d temp2/_darcs

# Checking that `darcs init x` works

not darcs init x y            # refuse when 2 arguments are given
not darcs init x --repodir y  # refuse for the same reason
darcs init x

rm -rf temp1 temp2 x

## issue1266 - attempting to initialize a repository inside
## another repository should cause a warning, because while perfectly
## legitimate, it is likely to be accidental.

rm -rf out
darcs init --repodir temp1
darcs init --repodir temp1/temp2 2>&1 | tee out
grep -i WARNING out   # A warning should be printed.
rm -rf temp1 out