File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -580,7 +580,7 @@ def deploy_snapshots():
580580 print (" * Preparing to deploy..." )
581581
582582 # Check for our needed environment variables!
583- # First up? Bintray!
583+ # First up? Bintray!
584584 bintray_api_username = os .environ .get ("BINTRAY_API_USERNAME" )
585585 bintray_api_key = os .environ .get ("BINTRAY_API_KEY" )
586586
@@ -589,17 +589,17 @@ def deploy_snapshots():
589589 print (" ! BINTRAY_API_USERNAME defined? %s" % ("Yes" if bintray_api_username else "No" ))
590590 print (" ! BINTRAY_API_KEY defined? %s" % ("Yes" if bintray_api_key else "No" ))
591591 sys .exit (1 )
592-
593- # One more - are the Qt5 dynamic directories defined?
594- qt5_bin_dir_dynamic_32 = os .environ .get ("QT5_BIN_DIR_DYNAMIC_32" )
595- qt5_bin_dir_dynamic_64 = os .environ .get ("QT5_BIN_DIR_DYNAMIC_64" )
596592
597- if (qt5_bin_dir_dynamic_32 == None ) or (qt5_bin_dir_dynamic_64 == None ):
593+ # One more - are the Qt5 dynamic directories defined?
594+ qt5_bin_dir_dynamic_32 = os .environ .get ("QT5_BIN_DIR_DYNAMIC_32" )
595+ qt5_bin_dir_dynamic_64 = os .environ .get ("QT5_BIN_DIR_DYNAMIC_64" )
596+
597+ if (qt5_bin_dir_dynamic_32 == None ) or (qt5_bin_dir_dynamic_64 == None ):
598598 print (" ! ERROR: Qt5 dynamic location environmental variables not found!" )
599599 print (" ! QT5_BIN_DIR_DYNAMIC_32 defined? %s" % ("Yes" if QT5_BIN_DIR_DYNAMIC_32 else "No" ))
600600 print (" ! QT5_BIN_DIR_DYNAMIC_64 defined? %s" % ("Yes" if QT5_BIN_DIR_DYNAMIC_64 else "No" ))
601601 sys .exit (1 )
602-
602+
603603 # Make a directory for our deploy ZIPs
604604 mkdir_p ("deploy" )
605605 mkdir_p (os .path .join ("deploy" , "release32" ))
You can’t perform that action at this time.
0 commit comments