Skip to content
Merged
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
4 changes: 2 additions & 2 deletions startupscript/butane/005-parse-devcontainer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ if [[ -f "${DEVCONTAINER_DOCKER_COMPOSE_PATH}" ]]; then
replace_template_options "${DEVCONTAINER_DOCKER_COMPOSE_PATH}"
fi

# apply gpu runtime block if accelerator is nvidia and cloud is gcp
if [[ "${ACCELERATOR}" == "nvidia" && "${CLOUD}" == "gcp" ]]; then
# apply gpu runtime block if accelerator is nvidia
if [[ "${ACCELERATOR}" == "nvidia" ]]; then
apply_gpu_runtime "${DEVCONTAINER_DOCKER_COMPOSE_PATH}" "${NVIDIA_RUNTIME_PATH}"
fi

Expand Down