mirror of
https://github.com/Vita3K/Vita3K.git
synced 2026-07-11 01:34:23 +02:00
16 lines
271 B
Bash
16 lines
271 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
require_arg() {
|
|
local value="${1:-}"
|
|
local name="${2:-argument}"
|
|
if [[ -z "$value" ]]; then
|
|
echo "Missing required argument: $name" >&2
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
git_short_sha() {
|
|
git rev-parse --short HEAD
|
|
}
|