Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion features/src/cccl-dev/.bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ if [ -f "${USERHOME}/.local/share/venvs/cccl/bin/activate" ] \
&& [ -z "${VIRTUAL_ENV:-}" -o "${VIRTUAL_ENV}" != "${USERHOME}/.local/share/venvs/cccl" ]; then
. "${USERHOME}/.local/share/venvs/cccl/bin/activate";
elif [ -n "${VIRTUAL_ENV_PROMPT:-}" ]; then
if ! echo "${PS1:-}" | grep -qF "${VIRTUAL_ENV_PROMPT}"; then
if ! grep -qE "(.*) " <<< "${VIRTUAL_ENV_PROMPT}" \
&& ! grep -qF "(${VIRTUAL_ENV_PROMPT}) " <<< "${PS1:-}"; then
export PS1="(${VIRTUAL_ENV_PROMPT}) ${PS1:-}";
elif ! grep -qF "${VIRTUAL_ENV_PROMPT}" <<< "${PS1:-}"; then
export PS1="${VIRTUAL_ENV_PROMPT}${PS1:-}";
fi
fi
2 changes: 1 addition & 1 deletion features/src/cccl-dev/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "NVIDIA CCCL development utilities",
"id": "cccl-dev",
"version": "26.8.1",
"version": "26.8.2",
"description": "A feature to install NVIDIA CCCL development utilities",
"options": {
"litVersion": {
Expand Down
Loading