Skip to content
Merged
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
3 changes: 2 additions & 1 deletion src/personal-setup/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "personal-setup",
"version": "4.0.0",
"version": "4.1.0",
"name": "Personal Setup",
"description": "Sets up my desired software and configuration for any devcontainer environment.",
"mounts": [
Expand All @@ -17,6 +17,7 @@
],
"containerEnv": {
"RCRC": "/mnt/dotfiles/tag-devcontainer/rcrc",
"PROMPT_PREFIX": "", // Nerd font "remote" icon
"_IS_DEVCONTAINER": "true"
},
"postCreateCommand": "rcup -vf"
Expand Down
1 change: 1 addition & 0 deletions test/personal-setup/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ check "tree is available" bash -c "which tree"
# Use a dotfile that should _always_ be present on any system
check "dotfiles are installed" bash -c "test -f $HOME/.rcrc"
check "_IS_DEVCONTAINER is set" bash -c "test \"\$_IS_DEVCONTAINER\" = \"true\""
check "PROMPT_PREFIX is set" bash -c "test \"\$PROMPT_PREFIX\" = \"\""

reportResults