Skip to content

Commit

Permalink
Ease modifying for specific use case isCommandStillFine
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin-Loison committed Oct 20, 2024
1 parent 88443c4 commit 2d35f92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/minimizeCURL.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ def executeCommand(command):

def isCommandStillFine(command):
result = executeCommand(command)
return wantedOutput in result
isCommandStillFineResult = wantedOutput in result
return isCommandStillFineResult

def getCommandLengthFormatted(command):
return f'{len(command):,}'
Expand Down

0 comments on commit 2d35f92

Please sign in to comment.