Skip to content

Commit

Permalink
fix(chezmoi): fix atuin symlink on alpine linux
Browse files Browse the repository at this point in the history
  • Loading branch information
ckagerer committed Nov 19, 2024
1 parent 1dd19e8 commit 9cf97a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/chezmoi/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "chezmoi",
"id": "chezmoi",
"version": "1.5.0",
"version": "1.5.1",
"description": "Install chezmoi",
"documentationURL": "https://github.com/ckagerer/devcontainer-features/tree/main/src/chezmoi",
"options": {
Expand Down
2 changes: 1 addition & 1 deletion src/chezmoi/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ if [ -n "\${ATUIN_USER}" ] && [ -n "\${ATUIN_PASSWORD}" ] && [ -n "\${ATUIN_KEY}
mv ~/.local/share/atuin ~/.local/share/atuin.bak
fi
mkdir -p /.persist-shell-history/atuin
ln --symbolic --force /.persist-shell-history/atuin ~/.local/share
ln -s -f /.persist-shell-history/atuin ~/.local/share
fi
atuin login --username "\${ATUIN_USER}" --password "\${ATUIN_PASSWORD}" --key "\${ATUIN_KEY}" || true
Expand Down

0 comments on commit 9cf97a4

Please sign in to comment.