aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Dylan Conway <35280289+dylan-conway@users.noreply.github.com> 2023-09-11 17:19:21 -0700
committerGravatar GitHub <noreply@github.com> 2023-09-11 17:19:21 -0700
commitca461f9e83b2c692442bb7e20c2f9e3670d2ef6a (patch)
tree5128e56522c5c309ba6885648622e354c45a2e31 /Makefile
parent9c4765f6167967f42afec3ce521776cafa9037ec (diff)
downloadbun-ca461f9e83b2c692442bb7e20c2f9e3670d2ef6a.tar.gz
bun-ca461f9e83b2c692442bb7e20c2f9e3670d2ef6a.tar.zst
bun-ca461f9e83b2c692442bb7e20c2f9e3670d2ef6a.zip
fix loading env from `.env.production` and friends (#4630)
* reload conditional vars * test * change `get` and `put` methods * dont clone empty env variables
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 49d6535a7..b3fe2d6bf 100644
--- a/Makefile
+++ b/Makefile
@@ -1880,7 +1880,7 @@ PACKAGE_MAP = --pkg-begin async_io $(BUN_DIR)/src/io/io_darwin.zig --pkg-begin b
.PHONY: base64
base64:
- cd $(BUN_DEPS_DIR)/base64 && make clean && cmake $(CMAKE_FLAGS) . && make
+ cd $(BUN_DEPS_DIR)/base64 && make clean && rm -rf CMakeCache.txt CMakeFiles && cmake $(CMAKE_FLAGS) . && make
cp $(BUN_DEPS_DIR)/base64/libbase64.a $(BUN_DEPS_OUT_DIR)/libbase64.a
.PHONY: cold-jsc-start