Skip to content

Commit

Permalink
Remove vcsclean script
Browse files Browse the repository at this point in the history
The vcsclean script is really only a wrapper for a git clean command.
Developers should use the more proper and clear native Git command
directly instead:
`git clean -Xfd`
  • Loading branch information
petk committed May 8, 2019
1 parent ec10e19 commit 4eb6731
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
6 changes: 0 additions & 6 deletions build/build.mk
Expand Up @@ -65,10 +65,4 @@ snapshot:
md5sum $$distname.tar.bz2; \
bzip2 -t $$distname.tar.bz2

gitclean-work:
@if (test ! -f '.git/info/exclude' || grep -s "git-ls-files" .git/info/exclude); then \
(echo "Rebuild .git/info/exclude" && echo '*.o' > .git/info/exclude && git svn propget svn:ignore | grep -v config.nice >> .git/info/exclude); \
fi; \
git clean -X -f -d;

.PHONY: snapshot
7 changes: 0 additions & 7 deletions scripts/dev/vcsclean

This file was deleted.

0 comments on commit 4eb6731

Please sign in to comment.