fixed .gitignore
This commit is contained in:
22
.buildbot/dist/01-sdist.sh
vendored
Normal file
22
.buildbot/dist/01-sdist.sh
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
if test -z "$DIST_FORMAT" ; then
|
||||
DIST_FORMAT="gztar"
|
||||
fi
|
||||
|
||||
python setup.py sdist --dist-dir . --formats "$DIST_FORMAT"
|
||||
|
||||
if test -n "$DIST_FILE" ; then
|
||||
dist_name=`python setup.py --name`
|
||||
dist_version=`python setup.py --version`
|
||||
case "$DIST_FORMAT" in
|
||||
gztar)
|
||||
dist_suffix=".tar.gz"
|
||||
;;
|
||||
*)
|
||||
dist_suffix=".${DIST_FORMAT}"
|
||||
;;
|
||||
esac
|
||||
produced_file="${dist_name}-${dist_version}${dist_suffix}"
|
||||
if test "$produced_file" != "$DIST_FILE" ; then
|
||||
mv "$produced_file" "$DIST_FILE"
|
||||
fi
|
||||
fi
|
||||
20
.gitignore
vendored
20
.gitignore
vendored
@@ -1,15 +1,15 @@
|
||||
.idea/
|
||||
/.idea/
|
||||
|
||||
manage.py
|
||||
conf/
|
||||
pythonenv/
|
||||
tmp/
|
||||
var/
|
||||
/manage.py
|
||||
/conf/
|
||||
/pythonenv/
|
||||
/tmp/
|
||||
/var/
|
||||
|
||||
*.pyc
|
||||
.coverage
|
||||
geckodriver.log
|
||||
/.coverage
|
||||
/geckodriver.log
|
||||
|
||||
django_test.egg-info/
|
||||
dist/
|
||||
/django_test.egg-info/
|
||||
/dist/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user