Skip to content

Commit

Permalink
hack
Browse files Browse the repository at this point in the history
Signed-off-by: Lou DeGenaro <lou.degenaro@gmail.com>
  • Loading branch information
degenaro committed Dec 3, 2024
1 parent 00cc192 commit e957eca
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions trestle/tasks/cis_xlsx_to_oscal_cd.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,9 @@ def _execute(self) -> TaskOutcome:

def _get_tempdir(self) -> tempfile.TemporaryDirectory():
"""Get tmpdir."""
path = pathlib.Path('/tmp/foobar')
path.mkdir(parents=True, exist_ok=True)
return path
return tempfile.TemporaryDirectory()


Expand Down

0 comments on commit e957eca

Please sign in to comment.