We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afb090d commit 1ebf0f1Copy full SHA for 1ebf0f1
script/clean_godeps.sh
@@ -22,9 +22,6 @@
22
# Finds all vendor directories
23
DIR_LIST=`find . -type d -name Godeps`
24
25
-# Remove directories used for versioning
26
-find $DIR_LIST -type d -name ".bzr" -o -name ".git" -exec rm -rf {} \;
27
-
28
## Removing all yaml files which are normally config files (travis.yml)
29
find $DIR_LIST -type f -name "*.yml" -exec rm -r {} \;
30
@@ -44,3 +41,5 @@ find $DIR_LIST -type f -name "*.cfg" -exec rm -r {} \;
44
41
## Removing all *.bat files
45
42
find $DIR_LIST -type f -name "*.bat" -exec rm -r {} \;
46
43
+# Remove directories used for versioning
+find $DIR_LIST -type d -name ".bzr" -o -name ".git" -exec rm -rf {} \;
0 commit comments