Skip to content

Commit 9cf97a4

Browse files
committed
fix(chezmoi): fix atuin symlink on alpine linux
1 parent 1dd19e8 commit 9cf97a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/chezmoi/devcontainer-feature.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "chezmoi",
33
"id": "chezmoi",
4-
"version": "1.5.0",
4+
"version": "1.5.1",
55
"description": "Install chezmoi",
66
"documentationURL": "https://github.com/ckagerer/devcontainer-features/tree/main/src/chezmoi",
77
"options": {

src/chezmoi/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ if [ -n "\${ATUIN_USER}" ] && [ -n "\${ATUIN_PASSWORD}" ] && [ -n "\${ATUIN_KEY}
109109
mv ~/.local/share/atuin ~/.local/share/atuin.bak
110110
fi
111111
mkdir -p /.persist-shell-history/atuin
112-
ln --symbolic --force /.persist-shell-history/atuin ~/.local/share
112+
ln -s -f /.persist-shell-history/atuin ~/.local/share
113113
fi
114114
115115
atuin login --username "\${ATUIN_USER}" --password "\${ATUIN_PASSWORD}" --key "\${ATUIN_KEY}" || true

0 commit comments

Comments
 (0)