Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Mar 4, 2024
1 parent 0acb5e8 commit ee97545
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ default:
# Only run a command if the tool is installed
_run-if-installed CMD *ARGS="":
#!/bin/sh
set -eau

if command -v {{ CMD }} > /dev/null; then
echo "Running '{{ CMD }} {{ ARGS }}'" 1>&2
{{ CMD }} {{ ARGS }}
Expand Down Expand Up @@ -475,9 +477,14 @@ ci-setup-nvim:
just {{ verbose_flag }} _ensure-downloaded '{{ nvim_url }}' \
'{{ nvim_sha }}' '{{ nvim_download_fname }}'

tar -xzvf "{{ nvim_download_fname }}" -C "{{ nvim_default_path }}"
tar -xzf "{{ nvim_download_fname }}" -C "{{ nvim_default_path }}"
fi

ls repositories
ls repositories/nvim
ls repositories/nvim/nvim-{{os()}}
ls repositories/nvim/nvim-{{os()}}/bin

{{ nvim_exe }} --version

# Run lint and check formatting
Expand Down

0 comments on commit ee97545

Please sign in to comment.