Skip to content

Commit

Permalink
chore: add pipe for publish check back in (#131)
Browse files Browse the repository at this point in the history
The issue was patched in covector to run the child process as a shell if there is a pipe. So this should work again (and tests in place so it doesn't break in the future).
  • Loading branch information
jbolda committed Mar 29, 2021
1 parent c49846c commit a32829c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changes/add-version-check-pipe-back.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"wry": housekeeping
---

Add pipe back to version check for covector config. This prevents the CI failure on publish if it exists already. The issue was patched in covector (and tests in place so it doesn't break in the future).
2 changes: 1 addition & 1 deletion .changes/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"pkgManagers": {
"rust": {
"version": true,
"getPublishedVersion": "cargo search ${ pkg.pkg } --limit 1",
"getPublishedVersion": "cargo search ${ pkg.pkg } --limit 1 | sed -nE 's/^[^\"]*\"//; s/\".*//1p' -",
"prepublish": [
"cargo install cargo-audit --features=fix",
{
Expand Down

0 comments on commit a32829c

Please sign in to comment.