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

reportResults