9 lines
143 B
Bash
Executable File
9 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$VCS" = hg ] && [ -d .hg ]; then
|
|
if ! hg addremove .; then
|
|
echo "etckeeper warning: hg addremove failed" >&2
|
|
fi
|
|
fi
|