Skip to content

Commit

Permalink
Merge pull request kubevirt#502 from rhevm-qe-automation/makefile
Browse files Browse the repository at this point in the history
makefile: fix clean target when vendor doesn't exist
  • Loading branch information
rmohr authored Oct 10, 2017
2 parents f3fc8bc + a199ed7 commit 5c71965
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ clean:
rm ./bin -rf

distclean: clean
find vendor/ -maxdepth 1 -mindepth 1 -not -name vendor.json -exec rm {} -rf \;
test -d vendor && find vendor/ -maxdepth 1 -mindepth 1 -not -name vendor.json -exec rm {} -rf \;
rm -f manifest/*.yaml
rm -f .glide.*.hash
glide cc
Expand Down

0 comments on commit 5c71965

Please sign in to comment.