Skip to content

Commit

Permalink
Fix local builds
Browse files Browse the repository at this point in the history
makefile doesn't like the script returning the macro, directed to null for local builds as version.dtsi file accessible. Add version.dtsi to gitignore so it doesn't get uploaded ot github
  • Loading branch information
ReFil committed Nov 15, 2023
1 parent 7316766 commit eeae941
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/firmware/*.uf2
config/version.dtsi
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ endif
.PHONY: all clean

all:
$(shell bin/get_version.sh)
$(shell bin/get_version.sh >> /dev/null)
$(DOCKER) build --tag zmk --file Dockerfile .
$(DOCKER) run --rm -it --name zmk \
-v $(PWD)/firmware:/app/firmware$(SELINUX1) \
Expand Down

0 comments on commit eeae941

Please sign in to comment.