mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-06-01 15:00:49 +00:00
Fix APPVEYOR_REPO_TAG, Ref. #387
This commit is contained in:
parent
9c1562a06d
commit
940a93c66d
@ -190,7 +190,7 @@ def is_tagged():
|
|||||||
return True
|
return True
|
||||||
if 'CIRCLE_TAG' in os.environ.keys():
|
if 'CIRCLE_TAG' in os.environ.keys():
|
||||||
return True
|
return True
|
||||||
if os.environ['APPVEYOR_REPO_TAG'] in (1, "True", "true"):
|
if os.environ.get('APPVEYOR_REPO_TAG', False) in (1, "True", "true"):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user