diff options
| author | Yuri Victorovich <yuri@FreeBSD.org> | 2025-10-11 03:48:58 +0000 |
|---|---|---|
| committer | Yuri Victorovich <yuri@FreeBSD.org> | 2025-10-11 03:49:16 +0000 |
| commit | f1edecd8c0091df2606cfce262a2abf63200822a (patch) | |
| tree | f94d29f0b3c37033b5f12b5c3cde604fbd8aef4b | |
| parent | 67ad101165aac9580d158979c150add8f569a78f (diff) | |
Tools/scripts: Add comments
| -rwxr-xr-x | Tools/scripts/git-get-latest-remote-version.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/git-get-latest-remote-version.sh b/Tools/scripts/git-get-latest-remote-version.sh index 3148305b4f95..692a4fb1c8ef 100755 --- a/Tools/scripts/git-get-latest-remote-version.sh +++ b/Tools/scripts/git-get-latest-remote-version.sh @@ -13,8 +13,8 @@ export LC_ALL=C # args -REPOSITORY_URL="$1" -TAG_PREFIX="$2" +REPOSITORY_URL="$1" # mandatory +TAG_PREFIX="$2" # optional if [ -z "$REPOSITORY_URL" ]; then echo "Usage: $0 <repository-url> <tag-prefix>" |
