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
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 Dotfile Manager",
"id": "chezmoi",
"version": "1.1.0",
"version": "1.1.1",
"description": "Manage your dotfiles across multiple diverse machines, securely.",
"options": {
"version": {
Expand Down
2 changes: 1 addition & 1 deletion src/chezmoi/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ main () {

echo "Downloading checksums ${CHEZMOI_CHECKSUMS_URL} ..."
wget --no-verbose -O /tmp/checksums.txt "${CHEZMOI_CHECKSUMS_URL}"
local CHEZMOI_SHA="$(grep linux_${ARCH}.tar.gz /tmp/checksums.txt | cut -d ' ' -f 1)"
local CHEZMOI_SHA="$(grep linux_${ARCH}.tar.gz$ /tmp/checksums.txt | cut -d ' ' -f 1)"

echo "Downloading ${CHEZMOI_URL} ..."
wget -qO /tmp/chezmoi.tar.gz "${CHEZMOI_URL}"
Expand Down