mirror of
https://github.com/sp-tarkov/build.git
synced 2025-02-13 06:10:47 -05:00
8 lines
223 B
PowerShell
8 lines
223 B
PowerShell
|
## Validate that the tag exists in each project repository, or fail silent.
|
||
|
|
||
|
Param(
|
||
|
[Parameter(Mandatory = $true)]
|
||
|
[string] $RELEASE_TAG
|
||
|
)
|
||
|
|
||
|
Write-Output " » TODO: Checking for existence of tag: $RELEASE_TAG"
|