Skip to content

Commit ae8bc21

Browse files
committed
fix github-actions
1 parent c1bbbb8 commit ae8bc21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/make.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ Function Build-Project {
7474
Where-Object {
7575
$_.Contains('Linking')
7676
} | ForEach-Object {
77-
$_.Split(' ')[2]
77+
$_.Split(' ')[2].Replace('bin', 'bin\.')
7878
}
7979
)
80-
$Output = (& ".\$($Output)" --all --format=plain --progress)
80+
$Output = (& $Output --all --format=plain --progress)
8181
$exitCode = Switch ($LastExitCode) {
8282
0 {0}
8383
Default {

0 commit comments

Comments
 (0)