Skip to content

Commit

Permalink
Rename references from build to bin
Browse files Browse the repository at this point in the history
  • Loading branch information
frankdejonge committed Aug 8, 2020
1 parent 0f80e2f commit ecf6122
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ set -e
set -x


if [ ! -f "./build/splitsh-lite" ]; then
bash build/install-split.sh
if [ ! -f "./bin/splitsh-lite" ]; then
bash bin/install-split.sh
fi

CURRENT_BRANCH="2.x"

function split()
{
SHA1=`./build/splitsh-lite --prefix=$1 --origin=origin/$CURRENT_BRANCH`
SHA1=`./bin/splitsh-lite --prefix=$1 --origin=origin/$CURRENT_BRANCH`
git push $2 "$SHA1:refs/heads/$CURRENT_BRANCH" -f
}

Expand Down

0 comments on commit ecf6122

Please sign in to comment.