From c2c172be6b6b92a44fb233ed1f2b3a377da11ac1 Mon Sep 17 00:00:00 2001 From: Anshul Garg Date: Fri, 13 Mar 2026 03:03:08 +0530 Subject: [PATCH] chore: fix maintainer email typo in flake.nix, harden coverage.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix typo: mgail.com → gmail.com in flake.nix maintainer metadata - Add -u (undefined vars) and -o pipefail to coverage.sh, consistent with version-sync.sh and tag-release.sh --- .changeset/fix-nix-typo-and-scripts.md | 5 +++++ flake.nix | 2 +- scripts/coverage.sh | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/fix-nix-typo-and-scripts.md diff --git a/.changeset/fix-nix-typo-and-scripts.md b/.changeset/fix-nix-typo-and-scripts.md new file mode 100644 index 00000000..33eb3eea --- /dev/null +++ b/.changeset/fix-nix-typo-and-scripts.md @@ -0,0 +1,5 @@ +--- +"@googleworkspace/cli": patch +--- + +chore: fix maintainer email typo in flake.nix and harden coverage.sh diff --git a/flake.nix b/flake.nix index d3a83ad9..be51c9d5 100644 --- a/flake.nix +++ b/flake.nix @@ -49,7 +49,7 @@ description = cargoToml.package.description; homepage = cargoToml.package.homepage; license = licenses.asl20; - maintainers = [{ name = "Justin Poehnelt"; email = "justin.poehnelt@mgail.com"; }]; + maintainers = [{ name = "Justin Poehnelt"; email = "justin.poehnelt@gmail.com"; }]; mainProgram = "gws"; }; }; diff --git a/scripts/coverage.sh b/scripts/coverage.sh index 32e9176b..41df484f 100755 --- a/scripts/coverage.sh +++ b/scripts/coverage.sh @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -set -e +set -euo pipefail # Check if cargo-llvm-cov is installed if ! cargo llvm-cov --version &> /dev/null; then