Skip to content
This repository was archived by the owner on Aug 13, 2025. It is now read-only.

Commit 9f8466f

Browse files
authored
fix: set shell to bash in Makefile to enable unset (#154)
<!-- Thank you for contributing to the project! 💜 Please see our [OSS process document](https://github.com/honeycombio/home/blob/main/honeycomb-oss-lifecycle-and-practices.md#) to get an idea of how we operate. --> ## Which problem is this PR solving? - Closes #69 ## Short description of the changes sets shell to bash to fix shell builtin behaviour ## How to verify that this has the expected result run `make test` with a disruptive environment variable that starts with `HONEYCOMB_` or `OTEL_` set
1 parent 7c70bb6 commit 9f8466f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#: set shell to bash to make shell builtin behaviour consistent
2+
SHELL := /usr/bin/env bash
3+
14
#: install dependencies; set dev_only for only development dependencies or use the install_dev target
25
install:
36
ifeq ($(dev_only),) # dev_only not set

0 commit comments

Comments
 (0)