Skip to content

Commit 0eda5c9

Browse files
author
karel26
committed
removed the redirection
1 parent 04f439a commit 0eda5c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

switch-branch.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ if "%branch%" == "master" (
2121
goto :eof
2222
)
2323
git checkout development
24-
call update.cmd >NUL 2>&1
24+
call update.cmd
2525
) else if "%branch%" == "development" (
2626
choice /c yn /n /m "Switch to master branch? [Y/N] "
2727
if ERRORLEVEL 2 (
2828
echo Operation aborted.
2929
goto :eof
3030
)
3131
git checkout master
32-
call update.cmd >NUL 2>&1
32+
call update.cmd
3333
) else (
3434
echo Unknown branch: %branch%
3535
)

0 commit comments

Comments
 (0)