Skip to content

Commit

Permalink
update to template 2024.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Feb 19, 2024
1 parent 187d3a8 commit 022586b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: 2024.2.5
_commit: 2024.2.6
_src_path: gh:epics-containers/ioc-template
description: Generic IOC for Delta Tau power pmac and turbo pmac motion controllers
git_platform: github.com
Expand Down
12 changes: 11 additions & 1 deletion .devcontainer/postCreateCommand
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,18 @@ if [[ $USER != "root" ]] ; then
fi

################################################################################
# Make sure ibek completion is available
# Shell customizations for Generic IOC devcontainers
################################################################################

# add ibek completion to bash and zsh
echo 'source <(ibek --show-completion bash)' >> $HOME/.bashrc
echo 'source <(ibek --show-completion zsh)' >> $HOME/.zshrc

# pick a theme that does not cause completion corruption in zsh
sed -i $HOME/.zshrc -e 's/ZSH_THEME="devcontainers"/ZSH_THEME="eastwood"/'

# allow personalization of all devcontainers in this subdirectory
# by placing a .devcontainer_rc file in the workspace root
if [[ -f /workspaces/.devcontainer_rc ]] ; then
source /workspaces/.devcontainer_rc
fi

0 comments on commit 022586b

Please sign in to comment.