Fix random errors fetching from github
It seems github requires a specific URL format for reaching repos. `emsdk update-tags` will randomly fail when the convention is not followed.
This commit is contained in:
4
emsdk
4
emsdk
@@ -24,8 +24,8 @@ else:
|
|||||||
|
|
||||||
emsdk_packages_url = urljoin(emsdk_master_server, 'packages/')
|
emsdk_packages_url = urljoin(emsdk_master_server, 'packages/')
|
||||||
|
|
||||||
emscripten_git_repo = 'https://github.com/kripken/emscripten/'
|
emscripten_git_repo = 'https://github.com/kripken/emscripten.git'
|
||||||
binaryen_git_repo = 'https://github.com/WebAssembly/binaryen/'
|
binaryen_git_repo = 'https://github.com/WebAssembly/binaryen.git'
|
||||||
|
|
||||||
# Enable this to do very verbose printing about the different steps that are being run. Useful for debugging.
|
# Enable this to do very verbose printing about the different steps that are being run. Useful for debugging.
|
||||||
VERBOSE = bool(os.getenv('EMSDK_VERBOSE')) if os.getenv('EMSDK_VERBOSE') != None else False
|
VERBOSE = bool(os.getenv('EMSDK_VERBOSE')) if os.getenv('EMSDK_VERBOSE') != None else False
|
||||||
|
|||||||
Reference in New Issue
Block a user