Skip to content

Commit

Permalink
fix restor backup issue
Browse files Browse the repository at this point in the history
  • Loading branch information
avollkopf committed May 12, 2022
1 parent e86c3d2 commit 9634e87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cbpi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "4.0.5"
__version__ = "4.0.6"
__codename__ = "Spring Break"

2 changes: 1 addition & 1 deletion cbpi/configFolder.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def create_folders(self):
pathlib.Path(os.path.join(self._rawPath, 'recipes')).mkdir(parents=True, exist_ok=True)
pathlib.Path(os.path.join(self._rawPath, 'upload')).mkdir(parents=True, exist_ok=True)

def recursive_chown(path, owner, group):
def recursive_chown(self, path, owner, group):
for dirpath, dirnames, filenames in os.walk(path):
shutil.chown(dirpath, owner, group)
for filename in filenames:
Expand Down
2 changes: 1 addition & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def release():
match = re.search('.*\"(.*)\"', reader.readline())
version = match.group(1)

path = "dist/cbpi-{}.tar.gz".format(version)
path = "dist/cbpi4-{}.tar.gz".format(version)
print("Uploading File {} ".format(path))
subprocess.run(["twine", "upload", path])

Expand Down

0 comments on commit 9634e87

Please sign in to comment.