Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ pip list
if [[ -n ${UPDATE_CONTENT} ]]; then
mkdir -p ${TMP_DIR} && cd ${TMP_DIR} || exit 1
REPO_NAME="api-examples"
BRANCH_NAME="main"
BRANCH_NAME_FALLBACK="dev"
BRANCH_NAME="fix/edge_type"
BRANCH_NAME_FALLBACK="fix/edge_type"

# Clone repository if it doesn't exist
if [[ ! -e "${REPO_NAME}" ]]; then
if [[ ! -e "${REPO_NAME}" ]]; then
echo "Attempting checkout and exiting if unsuccessful"
git clone https://github.com/Exabyte-io/${REPO_NAME}.git || exit 1
fi
Expand Down