Skip to content

Commit

Permalink
speed up fetch as in #85
Browse files Browse the repository at this point in the history
  • Loading branch information
deemru committed Apr 3, 2024
1 parent 43f9bae commit db6074f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build_linux/chromium-gost-prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ git reset HEAD~ --hard

cd $CHROMIUM_PATH
git reset HEAD~ --hard
git fetch --tags
git fetch origin tag $CHROMIUM_TAG --no-tags
git checkout -b temp tags/$CHROMIUM_TAG
git show-ref --quiet refs/heads/$GOST_BRANCH && git branch -D $GOST_BRANCH
git checkout -b $GOST_BRANCH tags/$CHROMIUM_TAG
Expand Down
2 changes: 1 addition & 1 deletion build_mac/chromium-gost-prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ git reset HEAD~ --hard

cd $CHROMIUM_PATH
git reset HEAD~ --hard
git fetch --tags
git fetch origin tag $CHROMIUM_TAG --no-tags
git checkout -b temp tags/$CHROMIUM_TAG
git show-ref --quiet refs/heads/$GOST_BRANCH && git branch -D $GOST_BRANCH
git checkout -b $GOST_BRANCH tags/$CHROMIUM_TAG
Expand Down
2 changes: 1 addition & 1 deletion build_windows/chromium-gost-prepare.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ call git reset HEAD~ --hard

cd %CHROMIUM_PATH%
call git reset HEAD~ --hard
call git fetch --tags
call git fetch origin tag %CHROMIUM_TAG% --no-tags
call git checkout -b temp tags/%CHROMIUM_TAG%
call git show-ref --quiet refs/heads/%GOST_BRANCH% && call git branch -D %GOST_BRANCH%
call git checkout -b %GOST_BRANCH% tags/%CHROMIUM_TAG%
Expand Down

0 comments on commit db6074f

Please sign in to comment.