mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-17 18:40:33 +00:00
6981c19a13
* Fix build when semantic release shows error * Fix appveyor with version warning
9 lines
227 B
PowerShell
9 lines
227 B
PowerShell
semantic-release --dry-run | %{
|
|
echo $_
|
|
$fields = -split $_;
|
|
if ($fields[0] -eq "#" -or $fields[0] -eq "##") {
|
|
echo "Mirror version " $fields[1]
|
|
echo $fields[1] > Assets/Mirror/version.txt
|
|
}
|
|
}
|