Repo containing scripts to be used with dovel, and git hooks that powers our web interface.
Author: myr (myr@terminal.pink)
Date: Wed Mar 5 13:04:11 2025 -0300
Parent: 7a43f4a
Fixed decode function
diff --git a/aux.sh b/aux.sh index 57c2713..8c9c828 100755 --- a/aux.sh +++ b/aux.sh @@ -259,5 +259,6 @@ decode() { printf "%s" "$@" | sed -e 's/=?UTF-8?B?//Ig' \ -e 's/?=//g' | base64 -d ;; + *) printf "%s" "$@" ;; esac }