mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-31 06:48:25 -04:00
fix statemachine create_root_snapshot and retry timing
This commit is contained in:
parent
67c22b2df0
commit
1ec2753664
8 changed files with 48 additions and 40 deletions
|
@ -1,7 +1,5 @@
|
|||
__package__ = 'abx_plugin_git'
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
from abx_pkg import BinName
|
||||
|
||||
|
@ -14,7 +12,7 @@ class GitExtractor(BaseExtractor):
|
|||
name: ExtractorName = 'git'
|
||||
binary: BinName = GIT_BINARY.name
|
||||
|
||||
def get_output_path(self, snapshot) -> Path | None:
|
||||
return snapshot.as_link() / 'git'
|
||||
def get_output_path(self, snapshot) -> str:
|
||||
return 'git'
|
||||
|
||||
GIT_EXTRACTOR = GitExtractor()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue