We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba7ea9b commit 592672eCopy full SHA for 592672e
1 file changed
.github/workflows/build.yml
@@ -147,6 +147,7 @@ jobs:
147
run: |
148
PACKAGES=$(opam list -s -V --color=never --installable --depends-on cppo,cppo_ocamlbuild | \
149
awk '{
150
+ if ($0 ~ /^cppo_ocamlbuild\./) next
151
line = $0
152
dot = match(line, /\./)
153
pkg = substr(line, 1, dot - 1)
@@ -184,7 +185,9 @@ jobs:
184
185
foreach ($line in $rawPackages) {
186
if ($line -match '^(.*?)[.]') {
187
$pkg = $matches[1]
- $packageMap[$pkg] = $line
188
+ if ($pkg -ne "cppo_ocamlbuild") {
189
+ $packageMap[$pkg] = $line
190
+ }
191
}
192
193
0 commit comments