remove unused --recursive from git calls in win installers

This commit is contained in:
Johnny Robeson 2014-06-27 17:41:22 -04:00
parent 91632ee3d5
commit dc0a83f4a4
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ REM limitations under the License.
@set APP_DIR=%HOME%\.spf13-vim-3
IF NOT EXIST "%APP_DIR%" (
call git clone --recursive -b 3.0 https://github.com/spf13/spf13-vim.git "%APP_DIR%"
call git clone -b 3.0 https://github.com/spf13/spf13-vim.git "%APP_DIR%"
) ELSE (
@set ORIGINAL_DIR=%CD%
echo updating spf13-vim

View File

@ -33,7 +33,7 @@ REM limitations under the License.
chdir /d "%ORIGINAL_DIR%"
) else (
echo cloning spf13-vim
call git clone --recursive -b 3.0 git://github.com/spf13/spf13-vim.git "%APP_DIR%"
call git clone -b 3.0 git://github.com/spf13/spf13-vim.git "%APP_DIR%"
)
@if not exist "%APP_DIR%\.vim\bundle" call mkdir "%APP_DIR%\.vim\bundle"