mirror of
https://github.com/mullvad/mullvadvpn-app.git
synced 2026-03-13 10:22:35 +08:00
15 lines
251 B
Bash
Executable File
15 lines
251 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd "$SCRIPT_DIR"
|
|
|
|
# shellcheck disable=SC1091
|
|
source ./log
|
|
|
|
if ! git verify-commit HEAD; then
|
|
log_error "Current commit failed signature check"
|
|
exit 1
|
|
fi
|