Skip to content

Commit 22263c1

Browse files
committed
fix syntax errors in Makefile
1 parent eb861ec commit 22263c1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ test:
4040
# tweak to each package.json.
4141
.PHONY: install-local-helpers undo-install-local-helpers
4242
install-local-helpers:
43-
(cd loggers/winston && npm install ../../helpers)
44-
(cd loggers/morgan && npm install ../../helpers)
45-
(cd loggers/pino && npm install ../../helpers)
43+
(cd loggers/winston && npm install ../../helpers)
44+
(cd loggers/morgan && npm install ../../helpers)
45+
(cd loggers/pino && npm install ../../helpers)
4646
undo-install-local-helpers:
47-
export HELPERS_VER=$(shell cd helpers && npm info . version) && \
48-
(cd loggers/winston && npm install @elastic/ecs-helpers@v$$HELPERS_VER) && \
49-
(cd loggers/morgan && npm install @elastic/ecs-helpers@v$$HELPERS_VER) && \
50-
(cd loggers/pino && npm install @elastic/ecs-helpers@v$$HELPERS_VER)
47+
export HELPERS_VER=$(shell cd helpers && npm info . version) && \
48+
(cd loggers/winston && npm install @elastic/ecs-helpers@v$$HELPERS_VER) && \
49+
(cd loggers/morgan && npm install @elastic/ecs-helpers@v$$HELPERS_VER) && \
50+
(cd loggers/pino && npm install @elastic/ecs-helpers@v$$HELPERS_VER)
5151

5252
# Build and open the rendered docs for testing.
5353
#

0 commit comments

Comments
 (0)