Skip to content

Commit

Permalink
remove unused --recursive from git calls in win installers
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnny Robeson committed Mar 7, 2015
1 parent 91632ee commit dc0a83f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spf13-vim-windows-install.cmd
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion spf13-vim-windows-xp-install.cmd
Expand Up @@ -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"
Expand Down

0 comments on commit dc0a83f

Please sign in to comment.