Skip to content

Commit

Permalink
update make install command
Browse files Browse the repository at this point in the history
Signed-off-by: nyagamunene <[email protected]>
  • Loading branch information
nyagamunene committed Dec 20, 2024
1 parent 0f70398 commit febf61c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ $(SERVICES):
$(call compile_service,$(@))

install:
for file in $(wildcard $(BUILD_DIR)/*[!.wasm]); do \
cp "$$file" "$(GOBIN)/propeller-$$(basename "$$file")"; \
done
$(foreach f,$(wildcard $(BUILD_DIR)/*[!.wasm]),cp $(f) $(patsubst $(BUILD_DIR)/%,$(GOBIN)/propeller-%,$(f));)

.PHONY: all $(SERVICES)
all: $(SERVICES)
Expand Down

0 comments on commit febf61c

Please sign in to comment.