We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc057f7 commit aae4787Copy full SHA for aae4787
CI/deploy.ps1
@@ -23,8 +23,8 @@ foreach($artifact in $artifacts.values)
23
Write-Output "Upload artifact: $($artifact.name)"
24
$ext = [System.IO.Path]::GetExtension($artifact.name)
25
$name = [System.IO.Path]::GetFileNameWithoutExtension($artifact.name)
26
- IF ($name -eg "FlashDevelop") { $fd = true; }
27
- IF ($name -eg "HaxeDevelop") { $hd = true; }
+ IF ($name -contains "FlashDevelop") { $fd = true; }
+ IF ($name -contains "HaxeDevelop") { $hd = true; }
28
IF ($ext -eq ".xml")
29
{
30
# Upload appman.xml file
0 commit comments