Skip to content
Closed
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: 5 additions & 1 deletion docker/examples_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,11 @@ function do_checkout_version()

#####
# set up the source and target info
git_root_url="https://github.com/deephaven/examples.git"
# The :@ indicates an empty username and password
# Sometimes git prompts for username/password even though this is a public repo
# Sometimes it does not prompt. I have no idea why this started prompting sometimes.
# There doesn't seem to be another way to disable the prompt. Setting GIT_TERMINAL_PROMPT=false just makes the clone fail.
git_root_url="https://:@github.com/deephaven/examples.git"

target_path="/data/examples"

Expand Down