diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-03-12 21:36:05 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-03-12 21:36:12 -0500 |
commit | 880f396bd915ddb38504170ad9412e7db2c48fdf (patch) | |
tree | ae77b490c58e5a675428fc1ed6cf95c8406581c0 | |
parent | c56243f08c851f57737003ff8fbcaf00948241d8 (diff) | |
download | mediagoblin-880f396bd915ddb38504170ad9412e7db2c48fdf.tar.lz mediagoblin-880f396bd915ddb38504170ad9412e7db2c48fdf.tar.xz mediagoblin-880f396bd915ddb38504170ad9412e7db2c48fdf.zip |
Remove .pyc files from tarball when running maketarball.sh
-rwxr-xr-x | devtools/maketarball.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/devtools/maketarball.sh b/devtools/maketarball.sh index 7d88c6fd..c6c2bc2b 100755 --- a/devtools/maketarball.sh +++ b/devtools/maketarball.sh @@ -161,6 +161,9 @@ then rm -rf docs/_build/ fi + # Remove .pyc files that may have been generated by sphinx + find mediagoblin -name '*.pyc' -exec rm {} \; + popd tar -cvf $FNBASE.tar $FNBASE |