diff options
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/directory-archive/fetch-all-functions | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/directory-archive/fetch-all-functions b/contrib/directory-archive/fetch-all-functions index 72cc1caeaa..a9335bda7b 100644 --- a/contrib/directory-archive/fetch-all-functions +++ b/contrib/directory-archive/fetch-all-functions @@ -72,7 +72,9 @@ fetch_digest() { } if [ -x /usr/bin/base64 ] ; then - alias base64-decode='/usr/bin/base64 -d' + base64-decode() { + /usr/bin/base64 -d + } else base64-decode() { perl -MMIME::Base64 -e 'print decode_base64(<>)' |