From f4edb7ada50ab7937178dd8cadf03913a0d979a0 Mon Sep 17 00:00:00 2001 From: Christoph <auchri@users.noreply.github.com> Date: Tue, 18 Apr 2017 11:47:19 +0200 Subject: [PATCH] Only clone latest commit at AppVeyor (#3283) Signed-off-by: Christoph Auer <auer.chrisi@gmx.net> --- .appveyor/install.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor/install.bat b/.appveyor/install.bat index 3474375b4..d1317deb6 100644 --- a/.appveyor/install.bat +++ b/.appveyor/install.bat @@ -25,7 +25,7 @@ GOTO:EOF :getDependencies call:logInfo "Clone dependencies repository" - git clone -q --branch=master https://github.com/telegramdesktop/dependencies_windows.git %LIB_DIR% + git clone -q --depth 1 --branch=master https://github.com/telegramdesktop/dependencies_windows.git %LIB_DIR% cd %LIB_DIR% call prepare.bat GOTO:EOF