Set INSTALL_PATH 3.

This commit is contained in:
Gonzalo Exequiel Pedone 2021-02-22 21:27:15 -03:00
parent e502d66a3b
commit 9fdad39b5d
No known key found for this signature in database
GPG key ID: B8B09E63E9B85BAF

View file

@ -26,12 +26,13 @@ if __name__ =='__main__':
system = DTUtils.Utils().system
while True:
try:
deploy = __import__('deploy_' + system).Deploy()
except Exception as e:
print('No valid deploy script found: ', e)
deploy = __import__('deploy_' + system).Deploy()
#try:
#deploy = __import__('deploy_' + system).Deploy()
#except Exception as e:
#print('No valid deploy script found: ', e)
exit()
#exit()
if system == deploy.targetSystem:
deploy.run()