Skip to content

Commit aae4787

Browse files
committed
Smarter... :)
1 parent dc057f7 commit aae4787

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CI/deploy.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ foreach($artifact in $artifacts.values)
2323
Write-Output "Upload artifact: $($artifact.name)"
2424
$ext = [System.IO.Path]::GetExtension($artifact.name)
2525
$name = [System.IO.Path]::GetFileNameWithoutExtension($artifact.name)
26-
IF ($name -eg "FlashDevelop") { $fd = true; }
27-
IF ($name -eg "HaxeDevelop") { $hd = true; }
26+
IF ($name -contains "FlashDevelop") { $fd = true; }
27+
IF ($name -contains "HaxeDevelop") { $hd = true; }
2828
IF ($ext -eq ".xml")
2929
{
3030
# Upload appman.xml file

0 commit comments

Comments
 (0)