6c95c870b0
- /home/.chezmoiscripts/universal/run_onchange_before_91-configure-gpg.tmpl - /home/.chezmoiscripts/universal/run_before_01-decrypt-age-key.tmpl - /home/.chezmoiscripts/ubuntu/run_onchange_before_10-install-ubuntu-dependencies.tmpl - /home/.chezmoiscripts/qubes/run_onchange_before_12-update-dom0.tmpl - /home/.chezmoiscripts/opensuse/run_onchange_before_11-install-opensuse-software.tmpl - /home/.chezmoiscripts/linux/run_onchange_before_10-system-tweaks.tmpl - /home/.chezmoiscripts/linux/run_onchange_before_11-configure-swap.tmpl - /home/.chezmoiscripts/freebsd/run_onchange_before_11-install-freebsd-packages.tmpl - /home/.chezmoiscripts/fedora/run_onchange_before_10-install-fedora-dependencies.tmpl - /home/.chezmoiscripts/debian/run_onchange_before_10-install-debian-dependencies.tmpl - /home/.chezmoiscripts/darwin/run_onchange_before_10-install-darwin-dependencies.tmpl - /home/.chezmoiscripts/darwin/run_onchange_before_20-ensure-user-group.tmpl - /home/.chezmoiscripts/centos/run_onchange_before_10-install-centos-dependencies.tmpl - /home/.chezmoiscripts/archlinux/run_onchange_before_10-install-archlinux-dependencies.tmpl - /home/.chezmoiscripts/_universal/run_onchange_before_08-install-zx.tmpl - /home/.chezmoiscripts/_universal/run_onchange_before_09-ensure-node-version.tmpl - /home/.chezmoiscripts/_universal/run_onchange_before_10-remove-bloatware.tmpl - /home/.chezmoiscripts/_universal/run_onchange_before_11-install-docker.tmpl - /home/.chezmoiscripts/_universal/run_onchange_before_05-install-homebrew.tmpl - /home/.chezmoiscripts/_universal/run_before_01-add-temporary-includes.tmpl - /home/.chezmoitemplates/universal/logg - /home/.chezmoitemplates/universal/profile - /home/.chezmoitemplates/universal/profile-before - /home/.chezmoitemplates/universal/logg-before - /home/.chezmoitemplates/universal/logg-compat - /home/.chezmoitemplates/universal/logg-inline - /home/.chezmoitemplates/universal/profile-inline - /home/.chezmoidata.yaml
53 lines
No EOL
1.3 KiB
Cheetah
53 lines
No EOL
1.3 KiB
Cheetah
{{- if (ne .host.distro.family "windows") -}}
|
|
#!/usr/bin/env bash
|
|
|
|
{{ includeTemplate "universal/profile-bundle" }}
|
|
{{ includeTemplate "universal/logg-bundle" }}
|
|
|
|
### Ensure node is installed
|
|
if ! command -v node > /dev/null; then
|
|
if command -v brew; then
|
|
logg 'Installing `node` via Homebrew'
|
|
brew install node
|
|
else
|
|
logg '`brew` is unavailable. Cannot use it to perform a system installation of node.'
|
|
fi
|
|
else
|
|
logg '`node` is available'
|
|
fi
|
|
|
|
### Ensure volta is installed
|
|
if ! command -v volta > /dev/null; then
|
|
if command -v brew > /dev/null; then
|
|
logg 'Installing `volta` via `brew`'
|
|
brew install volta
|
|
fi
|
|
if [ -z "$VOLTA_HOME" ]; then
|
|
volta setup
|
|
fi
|
|
if [ -f "$HOME/.bashrc" ]; then
|
|
. "$HOME/.bashrc"
|
|
else
|
|
logg warn 'Could not find `~/.bashrc` to source the results of `volta setup` from'
|
|
fi
|
|
export PATH="$VOLTA_HOME/bin:$PATH"
|
|
logg 'Installing `node` via `volta`'
|
|
volta install node@latest
|
|
else
|
|
if ! node --version > /dev/null; then
|
|
volta install node@latest
|
|
fi
|
|
fi
|
|
|
|
### Ensure zx is installed
|
|
if ! command -v zx > /dev/null; then
|
|
if command -v volta > /dev/null; then
|
|
logg 'Installing `zx` via `volta`'
|
|
volta install zx
|
|
else
|
|
logg '`volta` is missing'
|
|
fi
|
|
else
|
|
logg '`zx` is already installed'
|
|
fi
|
|
{{ end -}} |