diff options
author | Dan McGee <dan@archlinux.org> | 2009-09-13 18:16:55 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-09-13 18:16:55 -0500 |
commit | 2afa1063284a25ae2691b2727c45238d15025a9a (patch) | |
tree | 8e6a65fc6af6feb60652ff177b4cc95e4bf8185f /convert-to-any | |
parent | 5ebf55bedfa891a80170facc79f2fbfca11983c4 (diff) |
Be more careful with config file inclusion
We can't really do the basedir magic from db-functions as it is just being
sourced and is not the currently executing script. Although a bit
repetitive, it is a lot safer to just include the config file everywhere.
Noticed this when trying to run the latest available scripts on sigurd.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'convert-to-any')
-rwxr-xr-x | convert-to-any | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/convert-to-any b/convert-to-any index e21b7cd..53d1a7b 100755 --- a/convert-to-any +++ b/convert-to-any @@ -16,6 +16,7 @@ if [ $# -ne 1 ]; then fi . "$(dirname $0)/db-functions" +. "$(dirname $0)/config" cleanup() { trap '' 0 2 |