Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fix-nix-typo-and-scripts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@googleworkspace/cli": patch
---

chore: fix maintainer email typo in flake.nix and harden coverage.sh
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
};
};
Expand Down
2 changes: 1 addition & 1 deletion scripts/coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading