Skip to content

Commit

Permalink
Fixed a minor syntax in 'if not in' in run-atlas_container.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Shuwei Ye authored and Shuwei Ye committed Mar 8, 2024
1 parent c064a1e commit f9afd35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-atlas_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ def listReleases(args):
def getImageInfo(project, release, printOut=True):
imageInfo = {}
imageTags, repoID = listImageTags(project)
if not release in imageTags:
if release not in imageTags:
print("!!Warning!! release=%s is NOT available" % release)
sys.exit(1)
Expand Down

0 comments on commit f9afd35

Please sign in to comment.