File: 30darcs-add

package info (click to toggle)
etckeeper 1.15
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 412 kB
  • ctags: 41
  • sloc: sh: 1,072; python: 64; makefile: 58
file content (14 lines) | stat: -rwxr-xr-x 302 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e

if [ "$VCS" = darcs ] && [ -d _darcs ]; then
	rc=0
	res=$( darcs add -qr . 2>&1 ) || rc=$?
	if test $rc -ne 0; then
		if ! test $rc -eq 2 -a "${res%No files were added}" != "$res"; then
			printf "%s" "$res"
			echo "etckeeper warning: darcs add failed" >&2
		fi
	fi
	unset rc res
fi