Skip to content

Commit

Permalink
put zip back
Browse files Browse the repository at this point in the history
  • Loading branch information
stebo85 committed Jun 23, 2024
1 parent 6a07dba commit 60c6072
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions recipes/defacing/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,12 @@ def validateJson(jsonFilePath, schemaFilePath):
if not os.path.isfile(docsFile):
raise Exception('Could not find documentation file: ' + docsFile)

# Check 7-zip exists
zipExe = '/usr/bin/7z'

if not os.path.isfile(zipExe):
raise Exception('Could not find 7-Zip executable: ' + zipExe + '\nPlease download and install 7-Zip')

dockerImagename = ('OpenRecon_' + vendor + '_' + name + ':' + 'V' + version).lower()
baseFilename = 'OpenRecon_' + vendor + '_' + name + '_V' + version

Expand Down

0 comments on commit 60c6072

Please sign in to comment.