mirror of
https://github.com/dlang/tools.git
synced 2025-04-30 07:00:38 +03:00
Add explicit repo name to git fetch and git fetch --tags
This commit is contained in:
parent
9e0306ec15
commit
19dc18f4a9
1 changed files with 2 additions and 2 deletions
|
@ -142,8 +142,8 @@ function update() {
|
||||||
git checkout master && \
|
git checkout master && \
|
||||||
git pull --ff-only $gitproject master && \
|
git pull --ff-only $gitproject master && \
|
||||||
git pull $gitproject master --tags && \
|
git pull $gitproject master --tags && \
|
||||||
git fetch && \
|
git fetch $gitproject && \
|
||||||
git fetch --tags) 2>$tempdir/$project.log
|
git fetch --tags $gitproject) 2>$tempdir/$project.log
|
||||||
then
|
then
|
||||||
echo "Failure updating $wd/$project." >>$tempdir/errors
|
echo "Failure updating $wd/$project." >>$tempdir/errors
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue