diff --git a/.azure/Docker/src/getCustomLogins.py b/.azure/Docker/src/getCustomLogins.py index 29d8129c4a9..4aa6f1293b7 100644 --- a/.azure/Docker/src/getCustomLogins.py +++ b/.azure/Docker/src/getCustomLogins.py @@ -10,6 +10,12 @@ # } import sys, json +from os.path import exists + +if not exists(sys.argv[1]): + print("") + sys.exit(0) + output=[] customLogins=json.load(open(sys.argv[1],"r"))