Skip to content

Commit 4a530d2

Browse files
committed
fix(#14): fix pipeline
1 parent 0cf9ea9 commit 4a530d2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

utils/ci/run_test.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ echo "config: $QUANTUMVIM_CONFIG_DIR"
2525

2626
# TODO log dir
2727

28-
mkdir -p "$QUANTUMVIM_RTP_DIR/after/pack/lazy/opt"
29-
git clone https://github.com/nvim-lua/plenary.nvim.git "$QUANTUMVIM_RTP_DIR/after/pack/lazy/opt/plenary"
28+
if [ ! -d "$QUANTUMVIM_RTP_DIR/after/pack/lazy/opt/plenary" ]; then
29+
mkdir -p "$QUANTUMVIM_RTP_DIR/after/pack/lazy/opt"
30+
git clone https://github.com/nvim-lua/plenary.nvim.git "$QUANTUMVIM_RTP_DIR/after/pack/lazy/opt/plenary"
31+
fi
3032

3133
qvim() {
3234
exec -a qvim nvim -u "$QUANTUMVIM_RTP_DIR/tests/minimal_init.lua" \

0 commit comments

Comments
 (0)