forked from helidon-io/helidon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fetch only branch when cloning examples repository
- Loading branch information
Showing
1 changed file
with
1 addition
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,9 +30,7 @@ error_trap_setup | |
readonly HELIDON_EXAMPLES_PATH=${WS_DIR}/helidon-examples | ||
if [ ! -d "${HELIDON_EXAMPLES_PATH}" ]; then | ||
echo "Cloning examples repository into ${HELIDON_EXAMPLES_PATH}" | ||
git clone [email protected]:helidon-io/helidon-examples.git "${HELIDON_EXAMPLES_PATH}" | ||
cd "${HELIDON_EXAMPLES_PATH}" | ||
git checkout dev-3.x | ||
git clone --branch dev-3.x --single-branch [email protected]:helidon-io/helidon-examples.git "${HELIDON_EXAMPLES_PATH}" | ||
fi | ||
|
||
# Make sure the helidon version from the example repo aligns with this repository | ||
|