Compare commits

...

3 Commits
2.1.0 ... 2.1.1

Author SHA1 Message Date
Dave Conroy
02880d6541 Release 5.1.1 - See CHANGELOG.md 2020-09-01 09:57:58 -07:00
Dave Conroy
564613f329 Merge pull request #41 from zicklag/patch-1
Fix POST_SCRIPT Environment Vairable Run
2020-09-01 09:55:37 -07:00
Zicklag
2606d3c4d5 Fix POST_SCRIPT Environment Vairable Run 2020-09-01 09:46:43 -05:00
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
## 2.1.1 2020-09-01 <zicklag@github>
### Fixed
- Add eval to POST_SCRIPT execution
## 2.1.0 2020-08-29 <dave at tiredofit dot ca>
### Added

View File

@@ -446,7 +446,7 @@ print_debug "Backup routines Initialized on $(date)"
if [ -n "$POST_SCRIPT" ] ; then
print_notice "Found POST_SCRIPT environment variable. Executing"
"${POST_SCRIPT}"
eval "${POST_SCRIPT}"
fi
### Post Backup Custom Script Support