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 cf7a9eb commit 0f70398
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,8 @@ $(SERVICES):
$(call compile_service,$(@))

install:
for file in $(BUILD_DIR)/*; do \
if [ "$$file" = "$${file%%.wasm}" ]; then \
cp "$$file" "$(GOBIN)/propeller-$$(basename "$$file")"; \
fi; \
for file in $(wildcard $(BUILD_DIR)/*[!.wasm]); do \
cp "$$file" "$(GOBIN)/propeller-$$(basename "$$file")"; \
done

.PHONY: all $(SERVICES)
Expand Down

0 comments on commit 0f70398

Please sign in to comment.