Skip to content

Commit

Permalink
chore: exclude .static from 'make clean', put asset back (#555)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobheadxi committed Feb 12, 2019
1 parent 673aada commit 31dc8e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Binary file added .static/inertia.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ clean: testenv-clean
go clean -testcache
rm -f ./inertia
rm -rf ./docs_build
find . -type f -name inertia.\* -exec rm {} \;
find . \
-type f \
-name inertia.\* \
-not -path "*.static*" \
-exec rm {} \;

## ____________
## * CLI / DAEMON
Expand Down

0 comments on commit 31dc8e0

Please sign in to comment.