cucumber/polyglot-release

Noise in stderr output

Closed this issue ยท 1 comments

๐Ÿ‘“ What did you see?

I ran a release today and I saw this message printed a few times among the expected output:

find: ./*.sln: No such file or directory

Also this from git:

remote:
remote: Create a pull request for 'release/v1.1.0' on GitHub by visiting:
remote:      https://github.com/cucumber/multi_test/pull/new/release/v1.1.0
remote:

โœ… What did you expect to see?

Just the expected output

๐Ÿ“š Any additional context?

Full output:

$ polyglot-release 1.1.0
find: ./*.sln: No such file or directory
find: ./*.sln: No such file or directory
Package manager manifests and CHANGELOG.md updated for 1.1.0
Here's what changed:
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ff1d3de..00b2e40 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,10 +1,12 @@
 # Changelog

 ## [Unreleased]
+
+## [1.1.0] - 2022-05-11
 ### Added
 - `MultiTest.disable_autorun` is back again!
-  ([#33](https://github.com/cucumber/multi_test/issues/33)
-   [#26](https://github.com/cucumber/multi_test/issues/26))
+([#33](https://github.com/cucumber/multi_test/issues/33)
+[#26](https://github.com/cucumber/multi_test/issues/26))

 ## [1.0.0] - 2022-05-04
 ### Changed
@@ -41,6 +43,7 @@ included. Ruby 2.2 removed minitest from standard library. (@tooky, @jmoody)
 - First gem release

 [Unreleased]: https://github.com/cucumber/multi_test/compare/1.0.0..main
+[1.1.0]: https://github.com/cucumber/multi_test/compare/1.0.0..main
 [1.0.0]: https://github.com/cucumber/multi_test/compare/v0.1.2..main
 [0.1.2]: https://github.com/cucumber/multi_test/compare/v0.1.1...v0.1.2
 [0.1.1]: https://github.com/cucumber/multi_test/compare/v0.1.0...v0.1.1
diff --git a/VERSION b/VERSION
index 3eefcb9..9084fa2 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.0.0
+1.1.0
Files committed to to git and tagged 'v1.1.0'
find: ./*.sln: No such file or directory
All commit(s) pushed to origin/main
remote:
remote: Create a pull request for 'release/v1.1.0' on GitHub by visiting:
remote:      https://github.com/cucumber/multi_test/pull/new/release/v1.1.0
remote:
Release commit (tagged with v1.1.0) pushed to origin/release/v1.1.0

This text was originally generated from a template, then edited by hand. You can modify the template here.

We perhaps need to make actual.output be the combination of both stderr and stdout for testing so we test for what the user sees.