Skip to content

Commit 4b827cd

Browse files
chore: fix maintainer email typo in flake.nix, harden coverage.sh (#449)
- 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
1 parent 8fce003 commit 4b827cd

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@googleworkspace/cli": patch
3+
---
4+
5+
chore: fix maintainer email typo in flake.nix and harden coverage.sh

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
description = cargoToml.package.description;
5050
homepage = cargoToml.package.homepage;
5151
license = licenses.asl20;
52-
maintainers = [{ name = "Justin Poehnelt"; email = "justin.poehnelt@mgail.com"; }];
52+
maintainers = [{ name = "Justin Poehnelt"; email = "justin.poehnelt@gmail.com"; }];
5353
mainProgram = "gws";
5454
};
5555
};

scripts/coverage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
set -e
16+
set -euo pipefail
1717

1818
# Check if cargo-llvm-cov is installed
1919
if ! cargo llvm-cov --version &> /dev/null; then

0 commit comments

Comments
 (0)