Skip to content

Commit

Permalink
avoid omegaconf interpolation in setup steps
Browse files Browse the repository at this point in the history
  • Loading branch information
epwalsh committed Oct 9, 2024
1 parent 48892ee commit 97172fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/olmo_core/internal/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ def build_common_components(
],
setup_steps=[
# Clone repo.
'git clone "${REPO_URL}" .',
'git checkout "${GIT_REF}"',
'git clone "$REPO_URL" .',
'git checkout "$GIT_REF"',
"git submodule update --init --recursive",
# Setup python environment.
"conda shell.bash activate base",
Expand Down
4 changes: 2 additions & 2 deletions src/olmo_core/launch/beaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ class BeakerWekaBucket(Config):


DEFAULT_SETUP_STEPS = (
'git clone "${REPO_URL}" .',
'git checkout "${GIT_REF}"',
'git clone "$REPO_URL" .',
'git checkout "$GIT_REF"',
"git submodule update --init --recursive",
"conda shell.bash activate base",
"pip install -e '.[all]'",
Expand Down

0 comments on commit 97172fc

Please sign in to comment.