Browse Source

fix syntax error

Nick Sweeting 1 year ago
parent
commit
cd3b937469
3 changed files with 3 additions and 4 deletions
  1. 1 2
      archivebox/main.py
  2. 1 1
      pyproject.toml
  3. 1 1
      uv.lock

+ 1 - 2
archivebox/main.py

@@ -1134,8 +1134,7 @@ def install(out_dir: Path=DATA_DIR, binproviders: Optional[List[str]]=None, bina
                         sys.stderr.write("\033[00m\n")  # reset
                     else:
                         binary.load_or_install(fresh=True, dry_run=dry_run).model_dump(exclude={'overrides', 'bin_dir', 'hook_type'})
-            if IS_ROOT:
-                LIB_DIR = 
+            if IS_ROOT and LIB_DIR:
                 with SudoPermission(uid=0):
                     if ARCHIVEBOX_USER == 0:
                         os.system(f'chmod -R 777 "{LIB_DIR.resolve()}"')

+ 1 - 1
pyproject.toml

@@ -1,6 +1,6 @@
 [project]
 name = "archivebox"
-version = "0.8.5rc48"
+version = "0.8.5rc49"
 requires-python = ">=3.10"
 description = "Self-hosted internet archiving solution."
 authors = [{name = "Nick Sweeting", email = "[email protected]"}]

+ 1 - 1
uv.lock

@@ -41,7 +41,7 @@ wheels = [
 
 [[package]]
 name = "archivebox"
-version = "0.8.5rc47"
+version = "0.8.5rc48"
 source = { editable = "." }
 dependencies = [
     { name = "atomicwrites" },