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 c1bbbb8 commit ae8bc21Copy full SHA for ae8bc21
.github/workflows/make.ps1
@@ -74,10 +74,10 @@ Function Build-Project {
74
Where-Object {
75
$_.Contains('Linking')
76
} | ForEach-Object {
77
- $_.Split(' ')[2]
+ $_.Split(' ')[2].Replace('bin', 'bin\.')
78
}
79
)
80
- $Output = (& ".\$($Output)" --all --format=plain --progress)
+ $Output = (& $Output --all --format=plain --progress)
81
$exitCode = Switch ($LastExitCode) {
82
0 {0}
83
Default {
0 commit comments