Fix uploading index.json under OS X
This commit is contained in:
parent
b413acddb8
commit
7255962bd3
2 changed files with 12 additions and 5 deletions
|
@ -45,7 +45,7 @@ def get_files_list(version):
|
||||||
|
|
||||||
|
|
||||||
def download_files(url, files):
|
def download_files(url, files):
|
||||||
directory = tempfile.mkdtemp(prefix='atom-shell-tmp')
|
directory = tempfile.mkdtemp(prefix='electron-tmp')
|
||||||
return directory, [
|
return directory, [
|
||||||
download(f, url + f, os.path.join(directory, f))
|
download(f, url + f, os.path.join(directory, f))
|
||||||
for f in files
|
for f in files
|
||||||
|
|
|
@ -4,19 +4,26 @@ import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from lib.config import PLATFORM, s3_config
|
from lib.config import PLATFORM, s3_config
|
||||||
from lib.util import execute, s3put, scoped_cwd
|
from lib.util import atom_gyp, execute, s3put, scoped_cwd
|
||||||
|
|
||||||
|
|
||||||
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
||||||
OUT_DIR = os.path.join(SOURCE_ROOT, 'out', 'R')
|
OUT_DIR = os.path.join(SOURCE_ROOT, 'out', 'R')
|
||||||
|
|
||||||
|
PROJECT_NAME = atom_gyp()['project_name%']
|
||||||
|
PRODUCT_NAME = atom_gyp()['product_name%']
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
# Upload the index.json.
|
# Upload the index.json.
|
||||||
with scoped_cwd(SOURCE_ROOT):
|
with scoped_cwd(SOURCE_ROOT):
|
||||||
atom_shell = os.path.join(OUT_DIR, 'atom')
|
if sys.platform == 'darwin':
|
||||||
if PLATFORM == 'win32':
|
atom_shell = os.path.join(OUT_DIR, '{0}.app'.format(PRODUCT_NAME),
|
||||||
atom_shell += '.exe'
|
'Contents', 'MacOS', PRODUCT_NAME)
|
||||||
|
elif sys.platform == 'win32':
|
||||||
|
atom_shell = os.path.join(OUT_DIR, '{0}.exe'.format(PROJECT_NAME))
|
||||||
|
else:
|
||||||
|
atom_shell = os.path.join(OUT_DIR, PROJECT_NAME)
|
||||||
index_json = os.path.relpath(os.path.join(OUT_DIR, 'index.json'))
|
index_json = os.path.relpath(os.path.join(OUT_DIR, 'index.json'))
|
||||||
execute([atom_shell,
|
execute([atom_shell,
|
||||||
os.path.join('tools', 'dump-version-info.js'),
|
os.path.join('tools', 'dump-version-info.js'),
|
||||||
|
|
Loading…
Reference in a new issue