mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-09 15:19:11 +02:00
16 lines
251 B
Bash
16 lines
251 B
Bash
#!/bin/bash
|
|
# Copyright 2023 - 2024, project-repo and the cagebreak contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
VERSION=$1
|
|
RESULT=0
|
|
|
|
if git tag -v "${VERSION}"
|
|
then
|
|
echo "[x] git tag"
|
|
else
|
|
RESULT=1
|
|
echo "[ ] git tag"
|
|
fi
|
|
|
|
exit "${RESULT}"
|