Update 3 files

- /home/.chezmoiscripts/_universal/run_onchange_before_9-ensure-node-version.tmpl
- /home/.chezmoiscripts/_universal/run_onchange_before_5-install-homebrew.tmpl
- /home/.chezmoiscripts/_universal/run_onchange_before_8-install-zx.tmpl
This commit is contained in:
Brian Zalewski 2023-01-10 05:55:47 +00:00
parent b955ae0945
commit 6d2194d0ba
3 changed files with 6 additions and 4 deletions

View file

@ -1,5 +1,6 @@
{{- if (ne .host.distro.family "windows") -}}
#!/usr/bin/env bash
{{- if (ne .host.distro.family "windows") }}
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}

View file

@ -1,5 +1,5 @@
{{- if (ne .host.distro.family "windows") -}}
#!/usr/bin/env bash
{{- if (ne .host.distro.family "windows") }}
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}

View file

@ -1,5 +1,5 @@
{{- if (ne .host.distro.family "windows") -}}
#!/usr/bin/env bash
{{- if (ne .host.distro.family "windows") }}
# Node.js version: {{ output "node" "--version" }}
@ -17,4 +17,5 @@ if command -v volta > /dev/null; then
else
logg warn 'Volta is not installed - skipping logic that ensures Node.js meets the version requirement of >15'
fi
{{ end -}}