fix statemachine create_root_snapshot and retry timing

This commit is contained in:
Nick Sweeting 2024-11-17 22:57:09 -08:00
parent 67c22b2df0
commit 1ec2753664
No known key found for this signature in database
8 changed files with 48 additions and 40 deletions

View file

@ -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()