Compare commits

..

3 Commits

Author SHA1 Message Date
Clemens Schwaighofer
72f3f86eb6 Test for different command lookup check 2022-11-22 09:36:30 +09:00
Clemens Schwaighofer
c0f9634442 add *.compact to git ignore file 2022-11-14 20:27:42 +09:00
Clemens Schwaighofer
0e379d6ce0 Bump borg file module version number 2022-08-30 10:00:05 +09:00
3 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@@ -6,3 +6,4 @@ borg.backup.*.include
borg.backup.*.exclude
borg.backup.*.schema-only
borg.backup.*.init
borg.backup.*.compact

View File

@@ -4,7 +4,7 @@
# set last edit date + time
MODULE="file";
MODULE_VERSION="1.2.2";
MODULE_VERSION="1.2.3";
DIR="${BASH_SOURCE%/*}"
if [[ ! -d "$DIR" ]]; then DIR="$PWD"; fi

View File

@@ -413,6 +413,7 @@ elif [ ! -z "${BORG_EXECUTEABLE}" ]; then
exit;
fi;
elif ! command -v borg &> /dev/null; then
# elif [ -z ($command -v borg) ]; then
echo "borg backup seems not to be installed, please verify paths";
exit;
fi;