mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 19:10:49 +02:00
Add serverless content back to launcher builds
This commit is contained in:
parent
3db915c432
commit
bab1a902a5
1 changed files with 2 additions and 7 deletions
|
@ -17,14 +17,12 @@ WIPE_PATHS = []
|
||||||
|
|
||||||
if sys.platform == "win32":
|
if sys.platform == "win32":
|
||||||
WIPE_PATHS = [
|
WIPE_PATHS = [
|
||||||
'jsdoc',
|
'jsdoc'
|
||||||
'resources/serverless'
|
|
||||||
]
|
]
|
||||||
elif sys.platform == "darwin":
|
elif sys.platform == "darwin":
|
||||||
INTERFACE_BUILD_PATH = os.path.join(INTERFACE_BUILD_PATH, "Interface.app", "Contents", "Resources")
|
INTERFACE_BUILD_PATH = os.path.join(INTERFACE_BUILD_PATH, "Interface.app", "Contents", "Resources")
|
||||||
WIPE_PATHS = [
|
WIPE_PATHS = [
|
||||||
'jsdoc',
|
'jsdoc'
|
||||||
'serverless'
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@ -81,9 +79,6 @@ def fixupMacZip(filename):
|
||||||
# ignore the nitpick app
|
# ignore the nitpick app
|
||||||
if newFilename.startswith('nitpick.app'):
|
if newFilename.startswith('nitpick.app'):
|
||||||
continue
|
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
|
# if we made it here, include the file in the output
|
||||||
buffer = inzip.read(entry.filename)
|
buffer = inzip.read(entry.filename)
|
||||||
entry.filename = newFilename
|
entry.filename = newFilename
|
||||||
|
|
Loading…
Reference in a new issue