diff options
| author | Kali Kaneko <kali@leap.se> | 2017-08-28 11:28:21 -0400 | 
|---|---|---|
| committer | Kali Kaneko <kali@leap.se> | 2017-09-01 17:18:20 -0400 | 
| commit | ffb51e40ae1ee1b0c0eeba4a9fe72ce3fec1f85a (patch) | |
| tree | 1cee75a9daefa59a5ce2135315d0ce9d44424dc4 /ui | |
| parent | acdc0362cf76b88b1bfb353caeee0c0d18c8ce58 (diff) | |
[pkg] bitmask-js package
Diffstat (limited to 'ui')
| -rw-r--r-- | ui/Makefile | 4 | ||||
| -rw-r--r-- | ui/pydist/setup.py | 5 | 
2 files changed, 5 insertions, 4 deletions
| diff --git a/ui/Makefile b/ui/Makefile index 218192f2..423eff76 100644 --- a/ui/Makefile +++ b/ui/Makefile @@ -38,8 +38,8 @@ python-package-local: clean pydist-build  pydist-build: make-init -	npm install -	npm run build:production +	http_proxy= /usr/bin/npm install +	http_proxy= /usr/bin/npm run build:production  	cd pydist && python setup.py bdist_wheel  pydist-upload: diff --git a/ui/pydist/setup.py b/ui/pydist/setup.py index 0592a9b8..8f6fd4cd 100644 --- a/ui/pydist/setup.py +++ b/ui/pydist/setup.py @@ -39,7 +39,7 @@ timestamp = time.strftime('%Y%m%d%H%M', now.timetuple())  setup(      name='leap.bitmask_js', -    version='0.1.%s' % timestamp, +    version='0.2.%s' % timestamp,      description='Bitmask UI',      long_description=long_description,      author='LEAP Encrypted Access Project', @@ -47,6 +47,7 @@ setup(      namespace_packages=['leap'],      url='http://leap.se',      packages=['leap.bitmask_js'], +    zip_safe=False,      package_data={          '': ['public/*',               'public/css/*', @@ -54,5 +55,5 @@ setup(               'public/img/*',               'public/js/*',               ] -    } +    },  ) | 
