From 12213e4d59113e7de24c09c98f690234fe165d19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jukka=20Jyl=C3=A4nki?= Date: Wed, 8 Apr 2015 16:11:29 +0300 Subject: [PATCH] Change Emscripten repository URLs to use https:// handler instead of the git:// handler, because git protocol is not as secure, and is inaccessible behind firewalls for some users. --- emsdk_manifest.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/emsdk_manifest.json b/emsdk_manifest.json index 94dfd86..1dc5522 100644 --- a/emsdk_manifest.json +++ b/emsdk_manifest.json @@ -59,8 +59,8 @@ "version": "incoming", "bitness": 32, "install_path": "clang/fastcomp", - "url": "https://github.com/kripken/emscripten-fastcomp", - "clang_url": "https://github.com/kripken/emscripten-fastcomp-clang", + "url": "https://github.com/kripken/emscripten-fastcomp/", + "clang_url": "https://github.com/kripken/emscripten-fastcomp-clang/", "git_branch": "incoming", "custom_install_script": "build_fastcomp", "activated_path": "%installation_dir%/%fastcomp_build_bin_dir%", @@ -73,8 +73,8 @@ "bitness": 64, "install_path": "clang/fastcomp", "git_branch": "incoming", - "url": "https://github.com/kripken/emscripten-fastcomp", - "clang_url": "https://github.com/kripken/emscripten-fastcomp-clang", + "url": "https://github.com/kripken/emscripten-fastcomp/", + "clang_url": "https://github.com/kripken/emscripten-fastcomp-clang/", "custom_install_script": "build_fastcomp", "activated_path": "%installation_dir%/%fastcomp_build_bin_dir%", "activated_cfg": "LLVM_ROOT='%installation_dir%/%fastcomp_build_bin_dir%'", @@ -85,8 +85,8 @@ "version": "master", "bitness": 32, "install_path": "clang/fastcomp", - "url": "https://github.com/kripken/emscripten-fastcomp", - "clang_url": "https://github.com/kripken/emscripten-fastcomp-clang", + "url": "https://github.com/kripken/emscripten-fastcomp/", + "clang_url": "https://github.com/kripken/emscripten-fastcomp-clang/", "git_branch": "master", "custom_install_script": "build_fastcomp", "activated_path": "%installation_dir%/%fastcomp_build_bin_dir%", @@ -99,8 +99,8 @@ "bitness": 64, "install_path": "clang/fastcomp", "git_branch": "master", - "url": "https://github.com/kripken/emscripten-fastcomp", - "clang_url": "https://github.com/kripken/emscripten-fastcomp-clang", + "url": "https://github.com/kripken/emscripten-fastcomp/", + "clang_url": "https://github.com/kripken/emscripten-fastcomp-clang/", "custom_install_script": "build_fastcomp", "activated_path": "%installation_dir%/%fastcomp_build_bin_dir%", "activated_cfg": "LLVM_ROOT='%installation_dir%/%fastcomp_build_bin_dir%'", @@ -457,7 +457,7 @@ { "id": "emscripten", "version": "incoming", - "url": "git://github.com/kripken/emscripten.git", + "url": "https://github.com/kripken/emscripten/", "git_branch": "incoming", "activated_cfg": "EMSCRIPTEN_ROOT='%installation_dir%';EMSCRIPTEN_NATIVE_OPTIMIZER='%installation_dir%/tools/optimizer_build/%cmake_build_type%optimizer%.exe%'", "activated_path": "%installation_dir%", @@ -468,7 +468,7 @@ { "id": "emscripten", "version": "master", - "url": "git://github.com/kripken/emscripten.git", + "url": "https://github.com/kripken/emscripten/", "git_branch": "master", "activated_cfg": "EMSCRIPTEN_ROOT='%installation_dir%';EMSCRIPTEN_NATIVE_OPTIMIZER='%installation_dir%/tools/optimizer_build/%cmake_build_type%optimizer%.exe%'", "activated_path": "%installation_dir%",