Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fportantier committed Apr 15, 2019
1 parent 256fe24 commit 21b68a1
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 39 deletions.
23 changes: 0 additions & 23 deletions build_all

This file was deleted.

8 changes: 8 additions & 0 deletions build_deb
@@ -0,0 +1,8 @@
#!/bin/sh

./readme_generate

python3 setup.py sdist
rm -Rf deb_dist
python3 setup.py --command-packages=stdeb.command bdist_deb

15 changes: 0 additions & 15 deletions build_deb.sh

This file was deleted.

2 changes: 1 addition & 1 deletion habu/cli/cmd_config_show.py
Expand Up @@ -33,7 +33,7 @@ def cmd_config_show(option, show_keys):
if 'KEY' in key:
habucfg[key] = '*************'

print(json.dumps(habucfg, indent=4, sort_keys=True))
print(json.dumps(habucfg, indent=4, sort_keys=True, default=str))


if __name__ == '__main__':
Expand Down
8 changes: 8 additions & 0 deletions upload
@@ -0,0 +1,8 @@
#!/bin/sh

git add --all .
git commit
git push

python3 setup.py sdist upload --sign --identity fabian@portantier.com

0 comments on commit 21b68a1

Please sign in to comment.