Skip to content

Commit

Permalink
Merge branch 'hotfix/1.1.2'
Browse files Browse the repository at this point in the history
Fix issue #1
  • Loading branch information
mihalea committed Dec 8, 2019
2 parents ea4fa2e + 427b1eb commit 117724b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bitwarden_pyro/settings.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = "1.1.1"
VERSION = "1.1.2"
NAME = "bwpyro"
6 changes: 6 additions & 0 deletions bitwarden_pyro/util/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,16 @@ def __flatten_config(self, config, parent_key='', sep='.'):

def __copy_config(self, path):
try:
self._logger.debug("Copying default config")

source = pkg_resources.resource_filename(
'bitwarden_pyro.resources', 'config'
)

dirname = os.path.dirname(path)
if not os.path.isdir(dirname):
os.makedirs(dirname)

copy(source, path)
except IOError:
raise ConfigException("Failed to copy default config")
Expand Down
4 changes: 2 additions & 2 deletions packaging/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer Mircea Mihalea <mircea at mihalea dot ro>

pkgname=bitwarden-pyro-git
pkgver=v1.1.1
pkgver=v1.1.2
pkgrel=1
pkgdesc="Bitwarden python interface built with Rofi"
url="https://github.com/mihalea/bitwarden-pyro"
Expand All @@ -18,7 +18,7 @@ license=('MIT')
arch=('any')
provides=('bwpyro')
conflicts=('bwpyro')
source=("git+https://github.com/mihalea/${pkgname%-git}.git#tag=v1.1.1")
source=("git+https://github.com/mihalea/${pkgname%-git}.git#tag=v1.1.2")
md5sums=('SKIP')

pkgver() {
Expand Down

0 comments on commit 117724b

Please sign in to comment.