Use the repository name as the directory to clone to.

This commit is contained in:
Pranav K 2017-07-12 06:23:59 -07:00
parent 98525da02b
commit 68d84099a0
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@
<Target Name="_CloneRepository">
<PropertyGroup>
<ShallowClone Condition="'$(ShallowClone)'=='' OR '$(CloneRepositoryCommit)'!=''">false</ShallowClone>
<_CloneArguments>git clone --quiet $(CloneUrl)</_CloneArguments>
<_CloneArguments>git clone --quiet $(CloneUrl) $(CloneRepository)</_CloneArguments>
<_CloneArguments Condition="'$(ShallowClone)'=='true'">$(_CloneArguments) --depth 1</_CloneArguments>
</PropertyGroup>