mirror of
https://github.com/overte-org/overte.git
synced 2025-04-07 22:33:04 +02:00
Merge pull request #16306 from huffman/feat/hq-launcher-serverless
DEV-2374: Add serverless content back to launcher builds
This commit is contained in:
commit
a52b8acf4d
1 changed files with 2 additions and 7 deletions
|
@ -17,14 +17,12 @@ WIPE_PATHS = []
|
|||
|
||||
if sys.platform == "win32":
|
||||
WIPE_PATHS = [
|
||||
'jsdoc',
|
||||
'resources/serverless'
|
||||
'jsdoc'
|
||||
]
|
||||
elif sys.platform == "darwin":
|
||||
INTERFACE_BUILD_PATH = os.path.join(INTERFACE_BUILD_PATH, "Interface.app", "Contents", "Resources")
|
||||
WIPE_PATHS = [
|
||||
'jsdoc',
|
||||
'serverless'
|
||||
'jsdoc'
|
||||
]
|
||||
|
||||
|
||||
|
@ -81,9 +79,6 @@ def fixupMacZip(filename):
|
|||
# ignore the nitpick app
|
||||
if newFilename.startswith('nitpick.app'):
|
||||
continue
|
||||
# ignore the serverless content
|
||||
if newFilename.startswith('interface.app/Contents/Resources/serverless'):
|
||||
continue
|
||||
# if we made it here, include the file in the output
|
||||
buffer = inzip.read(entry.filename)
|
||||
entry.filename = newFilename
|
||||
|
|
Loading…
Reference in a new issue