mirror of
https://github.com/dani-garcia/bw_web_builds.git
synced 2024-12-26 12:28:15 +03:00
b9d00839d7
This version has a new feature which isn't supported yet by vaultwarden. It shouln't be that hard to add this functionality i think. You can now revoke and restore user access to an org.
32 lines
913 B
Bash
Executable file
32 lines
913 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -o pipefail -o errexit
|
|
BASEDIR=$(dirname "$(readlink -f "$0")")
|
|
|
|
# Error handling
|
|
handle_error() {
|
|
read -n1 -r -p "FAILED: line $1, exit code $2. Press any key to exit..." _
|
|
exit 1
|
|
}
|
|
trap 'handle_error $LINENO $?' ERR
|
|
|
|
# Load default script environment variables
|
|
# shellcheck source=.script_env
|
|
. "${BASEDIR}/.script_env"
|
|
|
|
pushd "${VAULT_FOLDER}"
|
|
|
|
VAULT_VERSION=$(get_web_vault_version)
|
|
# Check if the vault versions starts with 20 and isn't a 40 char hash
|
|
if [[ ${VAULT_VERSION} = 20* ]] && [ ${#VAULT_VERSION} -ne 40 ]; then
|
|
VAULT_VERSION="v${VAULT_VERSION}"
|
|
fi
|
|
PATCH_FILENAME="${VAULT_VERSION}.patch"
|
|
|
|
if [ "$(git status --porcelain | wc -l)" -ge 1 ]; then
|
|
git --no-pager diff --no-color --minimal > "../patches/${PATCH_FILENAME}"
|
|
echo "Patch has been created here: patches/${PATCH_FILENAME}"
|
|
else
|
|
echo "No changes found, skip generating a patch file."
|
|
fi
|
|
|
|
popd
|