Merge pull request #1332 from selliott512/makepkgs-is-keyword

scripts: For "makepkgs" replace "is" with "=="
This commit is contained in:
Steven Elliott 2024-02-07 13:58:45 -05:00 committed by GitHub
commit 25b3642324
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,7 +24,7 @@ version = os.getenv("VERSION")
if version is None:
sys.stderr.write("Version not specified for release\n")
sys.exit(1)
if version[0] is "v":
if version[0] == "v":
# Strip the leading "v" from versioning
version = version[1:]