Skip to content

Commit 30bc29a

Browse files
committed
fix: attempt to fix windows failure
1 parent b7e13c8 commit 30bc29a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
matrix:
1313
os:
1414
- ubuntu-latest
15-
- macos-latest
15+
# - macos-latest
1616
- windows-latest
1717
runs-on: ${{matrix.os}}
1818
steps:

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ pub fn load_pnp_manifest<P: AsRef<Path>>(p: P) -> Result<Manifest, Error> {
187187
.unwrap();
188188
}
189189

190+
dbg!(&manifest_content);
190191
let manifest_match = RE.find(&manifest_content)
191192
.unwrap_or_default()
192193
.ok_or_else(|| Error::FailedManifestHydration(Box::new(FailedManifestHydration {

0 commit comments

Comments
 (0)