Skip to content

Commit

Permalink
Fix for eliminating spaces in platformVerion
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikDeak committed Jul 1, 2022
1 parent 41e070e commit 4b3c13b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Scripts/Detail/Config.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ def configurePlatformVersion( self ):
platformInfo.append( platform.machine() )
self.platformVersion = "-".join( platformInfo )

self.platformVersion = self.platformVersion.replace( " ", "-" )

utility.printItem( "platformVersion: ", self.platformVersion )

def configureProductVersion( self ):
Expand Down

0 comments on commit 4b3c13b

Please sign in to comment.