diff options
Diffstat (limited to 'borg-family-0.2/src/sbin/bfenv')
-rwxr-xr-x | borg-family-0.2/src/sbin/bfenv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/borg-family-0.2/src/sbin/bfenv b/borg-family-0.2/src/sbin/bfenv index 756ef62..974152d 100755 --- a/borg-family-0.2/src/sbin/bfenv +++ b/borg-family-0.2/src/sbin/bfenv @@ -21,7 +21,7 @@ fi borg init "${borg_init_opts[@]}" 2>&1 | grep -vE '^A repository already exists' >&2 -if ! borg check "${borg_check_opts[@]}"; then +if ! borg list > /dev/null; then echo "Showing BORG_* env variables (see /etc/borg-family/envvars) :" >&2 env | grep ^BORG_ >&2 echo "End of BORG_* env variables" >&2 |