Skip to content

Commit

Permalink
Move firmware/.gitignore to root
Browse files Browse the repository at this point in the history
  • Loading branch information
calebdw committed Oct 3, 2023
1 parent 8c4f834 commit 3ab677d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
firmware/*
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ DOCKER := $(shell { command -v podman || command -v docker; })
.PHONY: all clean distclean

all:
mkdir -p firmware
$(DOCKER) build --tag zmk --build-arg USER_ID=$(shell id -u) .
$(DOCKER) volume create build
$(DOCKER) run --rm -it --name zmk \
Expand All @@ -14,7 +15,7 @@ all:
zmk

clean:
rm -rf firmware/[^.]*
rm -rf firmware
-$(DOCKER) volume rm build config firmware

distclean: clean
Expand Down
2 changes: 0 additions & 2 deletions firmware/.gitignore

This file was deleted.

0 comments on commit 3ab677d

Please sign in to comment.