Ignore build directory
- delete obsolete files from build/ - move files from build/ to buildscripts/ - add build/ to .gitignore
This commit is contained in:
parent
73ecf07dec
commit
ac2df26e96
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -17,5 +17,5 @@ dist
|
||||||
*.egg-info
|
*.egg-info
|
||||||
docs/_*/*
|
docs/_*/*
|
||||||
docs/autodoc/
|
docs/autodoc/
|
||||||
build/sphinx/
|
build
|
||||||
pyan/
|
pyan/
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
export LANG=de_DE.UTF-8
|
|
||||||
export LANGUAGE=de_DE
|
|
||||||
export LC_CTYPE="de_DE.UTF-8"
|
|
||||||
export LC_NUMERIC=de_DE.UTF-8
|
|
||||||
export LC_TIME=de_DE.UTF-8
|
|
||||||
export LC_COLLATE="de_DE.UTF-8"
|
|
||||||
export LC_MONETARY=de_DE.UTF-8
|
|
||||||
export LC_MESSAGES="de_DE.UTF-8"
|
|
||||||
export LC_PAPER=de_DE.UTF-8
|
|
||||||
export LC_NAME=de_DE.UTF-8
|
|
||||||
export LC_ADDRESS=de_DE.UTF-8
|
|
||||||
export LC_TELEPHONE=de_DE.UTF-8
|
|
||||||
export LC_MEASUREMENT=de_DE.UTF-8
|
|
||||||
export LC_IDENTIFICATION=de_DE.UTF-8
|
|
||||||
export LC_ALL=
|
|
||||||
python2.7 src/bitmessagemain.py
|
|
|
@ -1,23 +0,0 @@
|
||||||
#!/usr/bin/python2.7
|
|
||||||
|
|
||||||
import ctypes
|
|
||||||
import fnmatch
|
|
||||||
import os
|
|
||||||
import sys
|
|
||||||
import traceback
|
|
||||||
|
|
||||||
matches = []
|
|
||||||
for root, dirnames, filenames in os.walk('src'):
|
|
||||||
for filename in fnmatch.filter(filenames, '*.py'):
|
|
||||||
matches.append(os.path.join(root, filename))
|
|
||||||
|
|
||||||
for filename in matches:
|
|
||||||
source = open(filename, 'r').read() + '\n'
|
|
||||||
try:
|
|
||||||
compile(source, filename, 'exec')
|
|
||||||
except Exception as e:
|
|
||||||
if 'win' in sys.platform:
|
|
||||||
ctypes.windll.user32.MessageBoxA(0, traceback.format_exc(), "Exception in " + filename, 1)
|
|
||||||
else:
|
|
||||||
print "Exception in %s: %s" % (filename, traceback.format_exc())
|
|
||||||
sys.exit(1)
|
|
|
@ -1,11 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [ -z "$1" ]; then
|
|
||||||
echo "You must specify pull request number"
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
git pull
|
|
||||||
git checkout v0.6
|
|
||||||
git fetch origin pull/"$1"/head:"$1"
|
|
||||||
git merge --ff-only "$1"
|
|
Loading…
Reference in New Issue
Block a user