From 4135a12cb5121ce45a565c90efc6869b8391f371 Mon Sep 17 00:00:00 2001 From: Tobias Date: Sat, 29 Aug 2020 21:58:20 +0200 Subject: [PATCH] CMakeLists: Download Clang-Format from the Citra repo instead of yuzus (#5534) This problem seems to have slipped through the cracks in the original PR. (https://github.com/citra-emu/citra/pull/3410) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a07bf007a..9fbbb0497 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -261,7 +261,7 @@ if (NOT CLANG_FORMAT) message(STATUS "Clang format not found! Downloading...") set(CLANG_FORMAT "${PROJECT_BINARY_DIR}/externals/clang-format${CLANG_FORMAT_POSTFIX}.exe") file(DOWNLOAD - https://github.com/yuzu-emu/ext-windows-bin/raw/master/clang-format${CLANG_FORMAT_POSTFIX}.exe + https://github.com/citra-emu/ext-windows-bin/raw/master/clang-format${CLANG_FORMAT_POSTFIX}.exe "${CLANG_FORMAT}" SHOW_PROGRESS STATUS DOWNLOAD_SUCCESS) if (NOT DOWNLOAD_SUCCESS EQUAL 0)