From 624464bf6b8eaeabd1f2984d29ce41df5cedfbaf Mon Sep 17 00:00:00 2001 From: singleNeuron Date: Mon, 22 Feb 2021 11:58:35 +0800 Subject: [PATCH] Make get_adb faster --- scripts/get_adb.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/get_adb.ps1 b/scripts/get_adb.ps1 index 9adebba3d..e5c75bb6e 100644 --- a/scripts/get_adb.ps1 +++ b/scripts/get_adb.ps1 @@ -6,4 +6,4 @@ if ($ADBBinariesDirectory.Exists) { Remove-Item $ADBBinariesDirectory.FullName -Force -Recurse; $ADBBinariesDirectory.Create(); } -git clone -b $BranchName $ADBGitStore $ADBBinariesDirectory.FullName \ No newline at end of file +git clone -b $BranchName $ADBGitStore $ADBBinariesDirectory.FullName --depth=1 \ No newline at end of file