mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
8 lines
263 B
Bash
Executable File
8 lines
263 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# If pubring.kbx is bind-mounted read-only from host, skip import fallback.
|
|
if [ -f .git/signing.pub ] && [[ ! -f "${HOME}/.gnupg/pubring.kbx" || -w "${HOME}/.gnupg/pubring.kbx" ]]; then
|
|
gpg --import .git/signing.pub
|
|
fi
|