Skip to content

Commit

Permalink
fix(packages): update check_installed commands in .chezmoi.yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed May 24, 2023
1 parent 1de237e commit 6d1ba90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chezmoi/.chezmoidata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ packages:
- name: nvm
script: true
script_cmd: "curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash"
check_installed: "[[ ! -f ${HOME}/.nvm/nvm.sh ]]"
check_installed: "[[ -f ${HOME}/.nvm/nvm.sh ]]"
scope: minimal
- name: openssh-server
apt: true
Expand Down Expand Up @@ -271,13 +271,13 @@ packages:
snap: true
script: true
script_cmd: "curl https://sh.rustup.rs -sSf | sh -s -- -y --profile=minimal"
check_installed: "! command -v rustup &> /dev/null"
check_installed: "command -v rustup &> /dev/null"
scope: minimal
- name: sdkman
script: true
script_cmd: "curl -s 'https://get.sdkman.io' | bash"
check_prereqs: "command -v unzip"
check_installed: "[[ ! -f ${HOME}/.sdkman/bin/sdkman-init.sh ]]"
check_installed: "[[ -f ${HOME}/.sdkman/bin/sdkman-init.sh ]]"
scope: minimal
- name: seahorse
apt: true
Expand Down

0 comments on commit 6d1ba90

Please sign in to comment.