Skip to content

Commit

Permalink
fix: Extract scriptor zip in cwd, because it contains several subdirs (
Browse files Browse the repository at this point in the history
  • Loading branch information
sveneberth authored Nov 21, 2023
1 parent 0fa8b3a commit 93b0385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/viur_cli/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def step_label(step: int) -> str:
urlretrieve(download_url, tmp_zip_file)
case 2:
with zipfile.ZipFile(tmp_zip_file) as zip_f:
zip_f.extractall(scriptor_path)
zip_f.extractall()
case 3:
tmp_zip_file.unlink()
bar.label = "updated successful"

0 comments on commit 93b0385

Please sign in to comment.