Skip to content

Commit 364b13a

Browse files
committed
Merge branch '1.21.0' of D:\Repos\Minecraft\SFM\repos\SuperFactoryManager 1.21.0 into 1.21.1
2 parents f33d74d + 46cdf44 commit 364b13a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

actions/Collect jars.ps1

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,10 @@ try {
126126
########
127127

128128
# Copy selected jars to the output directory
129-
$sortedJars | ForEach-Object {
129+
$sortedJars `
130+
| Where-Object { $_.FullPath.Contains("(SFM)") } `
131+
| Where-Object { $_.FullPath.Contains("MC") } `
132+
| ForEach-Object {
130133
Copy-Item -Path $_.FullPath -Destination $outdir
131134
}
132135

0 commit comments

Comments
 (0)