Skip to content

Commit 6beae81

Browse files
committed
test: fix test deps
1 parent fd1b230 commit 6beae81

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

flake.nix

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
pkgs.lua5_1
3131
pkgs.just
3232
pkgs.stylua
33+
pkgs.wget
3334
];
3435
};
3536
};

justfile

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
deps:
22
#!/usr/bin/env bash
33
set -euo pipefail
4+
mkdir -p deps
5+
if [ ! -d "deps/plenary.nvim" ]; then
6+
git -C deps clone https://github.com/nvim-lua/plenary.nvim
7+
fi
8+
49
if [ ! -d "nvim-test" ]; then
510
git clone --depth 1 --branch v1.1.1 https://github.com/lewis6991/nvim-test
611
fi

0 commit comments

Comments
 (0)