Skip to content

Commit 30f10ff

Browse files
committed
Fix CI
1 parent a6f65b5 commit 30f10ff

File tree

3 files changed

+47
-2
lines changed

3 files changed

+47
-2
lines changed

createqmod.ps1

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ foreach ($mod in $modJson.modFiles) {
3434
}
3535

3636
foreach ($lib in $modJson.libraryFiles) {
37+
if ($lib -eq "libchatplex-sdk-bs.so") {
38+
Continue
39+
}
40+
41+
3742
$path = "./build/" + $lib
3843
if (-not (Test-Path $path)) {
3944
$path = "./extern/libs/" + $lib

qpm.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,25 @@
5959
}
6060
}
6161
],
62-
"workspace": null
62+
"workspace": {
63+
"scripts": {
64+
"build": [
65+
"pwsh ./build.ps1"
66+
],
67+
"clean": [
68+
"pwsh ./build.ps1 -clean"
69+
],
70+
"copy": [
71+
"pwsh ./copy.ps1"
72+
],
73+
"log": [
74+
"pwsh ./start-logging.ps1"
75+
],
76+
"qmod": [
77+
"pwsh ./build.ps1 -clean",
78+
"qpm qmod build",
79+
"pwsh ./createqmod.ps1 -clean"
80+
]
81+
}
82+
}
6383
}

qpm.shared.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,27 @@
6060
}
6161
}
6262
],
63-
"workspace": null
63+
"workspace": {
64+
"scripts": {
65+
"build": [
66+
"pwsh ./build.ps1"
67+
],
68+
"clean": [
69+
"pwsh ./build.ps1 -clean"
70+
],
71+
"copy": [
72+
"pwsh ./copy.ps1"
73+
],
74+
"log": [
75+
"pwsh ./start-logging.ps1"
76+
],
77+
"qmod": [
78+
"pwsh ./build.ps1 -clean",
79+
"qpm qmod build",
80+
"pwsh ./createqmod.ps1 -clean"
81+
]
82+
}
83+
}
6484
},
6585
"restoredDependencies": [
6686
{

0 commit comments

Comments
 (0)