diff --git a/CHANGELOG.md b/CHANGELOG.md index ec6966c..776c818 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog +## Release v1.3.2 + +#### Fixed +- Fixed #77 Missing variable when local directory is missing + + ## Release v1.3.1 #### Changed diff --git a/timemachine b/timemachine index b6cc558..27c7c38 100755 --- a/timemachine +++ b/timemachine @@ -13,8 +13,8 @@ MY_DESC="OSX-like timemachine cli script for Linux and BSD (and even OSX)" MY_PROJ="https://github.com/cytopia/linux-timemachine" MY_AUTH="cytopia" MY_MAIL="cytopia@everythingcli.org" -MY_VERS="1.3.1" -MY_DATE="2021-12-02" +MY_VERS="1.3.2" +MY_DATE="2022-07-12" # Default command line arguments VERBOSE= @@ -181,7 +181,7 @@ dir_exists() { logdebug "Checking if local dir exists: ${directory}" logdebug "\$ ${cmd}" if ! eval "${cmd}" >/dev/null; then - logerr "Local directory does not exist: ${dir_part}" + logerr "Local directory does not exist: ${directory}" return 1 fi fi