Skip to content

Commit f80e67f

Browse files
committed
Fix
1 parent 250ea6f commit f80e67f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ function BuildTarget
104104
{
105105
if ($binaryTimestamp -lt $file.LastWriteTimeUtc)
106106
{
107-
Write-Host "corral run -- ponyc $configFlag $ponyArgs --cpu "$Arch" --output `"$buildDir`" --bin-name `"$target`" `"$srcDir`""
108-
$output = (corral run -- ponyc $configFlag $ponyArgs --cpu `"$Arch`"--output "$buildDir" --bin-name "$target" "$srcDir")
107+
Write-Host "corral run -- ponyc $configFlag $ponyArgs --cpu `"$Arch"` --output `"$buildDir`" --bin-name `"$target`" `"$srcDir`""
108+
$output = (corral run -- ponyc $configFlag $ponyArgs --cpu "$Arch"--output "$buildDir" --bin-name "$target" "$srcDir")
109109
$output | ForEach-Object { Write-Host $_ }
110110
if ($LastExitCode -ne 0) { throw "Error" }
111111
break buildFiles

0 commit comments

Comments
 (0)