We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4127a63 commit f1eef36Copy full SHA for f1eef36
1 file changed
bin/release.sh
@@ -1,7 +1,10 @@
1
#!/usr/bin/env bash
2
3
-# Cleanup uneeded .gitignore files.
+# Cleanup uneeded git content.
4
find . -name ".gitignore" -type f -delete
5
+echo "Finding and deleting .git folders."
6
+find . -name ".git" -type d -exec echo {} +
7
+find . -name ".git" -type d -exec rm -rf {} +
8
9
# Create a tag in the Wordpress.org SVN repo when after your build succeeds via Travis.
10
# https://github.com/BoldGrid/wordpress-tag-sync
0 commit comments