Skip to content

Commit

Permalink
Loosely validate filename
Browse files Browse the repository at this point in the history
  • Loading branch information
miketrethewey committed May 12, 2024
1 parent b22afce commit 781ce7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/ci/common/prepare_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@

if len(BUILD_FILENAMES) > 0:
for BUILD_FILENAME in BUILD_FILENAMES:
if not BUILD_FILENAME == "":
if not BUILD_FILENAME in ["",".",".."]:
if not "artifact" in BUILD_FILENAME:
# move the binary to temp folder
move(
Expand Down

0 comments on commit 781ce7d

Please sign in to comment.