diff options
author | 2021-10-15 20:14:55 -0700 | |
---|---|---|
committer | 2021-10-15 20:14:55 -0700 | |
commit | b9bbd819be7f8d067e6dce0f440226f3553f7231 (patch) | |
tree | f41c0e95a9f56a9e902a85efb9e18d84edb992d7 | |
parent | b956ea5a5e33e6a6a21fa5d2e09f81732a058149 (diff) | |
download | bun-b9bbd819be7f8d067e6dce0f440226f3553f7231.tar.gz bun-b9bbd819be7f8d067e6dce0f440226f3553f7231.tar.zst bun-b9bbd819be7f8d067e6dce0f440226f3553f7231.zip |
Update Makefile
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -105,9 +105,9 @@ endif -MACOS_ICU_FILES = $(HOMEBREW_PREFIX)opt/icu4c/lib/libicudata.a \ - $(HOMEBREW_PREFIX)opt/icu4c/lib/libicui18n.a \ - $(HOMEBREW_PREFIX)opt/icu4c/lib/libicuuc.a +MACOS_ICU_FILES = $(HOMEBREW_PREFIX)/opt/icu4c/lib/libicudata.a \ + $(HOMEBREW_PREFIX)/opt/icu4c/lib/libicui18n.a \ + $(HOMEBREW_PREFIX)/opt/icu4c/lib/libicuuc.a MACOS_ICU_INCLUDE = $(HOMEBREW_PREFIX)opt/icu4c/include @@ -370,8 +370,8 @@ test-install: test-all: test-install test-with-hmr test-no-hmr copy-test-node-modules: - rm -rf integration/snippets/package-json-exports/node_modules - cp -r integration/snippets/package-json-exports/_node_modules_copy integration/snippets/package-json-exports/node_modules + rm -rf integration/snippets/package-json-exports/node_modules || echo ""; + cp -r integration/snippets/package-json-exports/_node_modules_copy integration/snippets/package-json-exports/node_modules || echo ""; kill-bun: -killall -9 bun bun-debug |