diff options
author | kylo252 <[email protected]> | 2021-08-26 20:32:16 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-26 23:02:16 +0430 |
commit | 27679f988fe187f9831ba7895c9c3a7ce2dd14f4 (patch) | |
tree | c7a9f429311a68f46752e943aa3fa03a690db722 /.github/workflows | |
parent | 14f129cf26a9814dc8f5fa46f483a588b5a813b0 (diff) |
[Refactor]: only allow a single logger (#1405)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/install.yaml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index f7d9da01..fa8bf0e3 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -38,8 +38,9 @@ jobs: - name: Install LunarVim timeout-minutes: 4 run: | - mkdir -p "$HOME/.local/share/lunarvim" - mkdir -p "$HOME/.config/lvim" + mkdir -p "$HOME"/.local/share/lunarvim/lvim + mkdir -p "$HOME"/.config/lvim + ln -s "$PWD"/* "$HOME"/.local/share/lunarvim/lvim/. bash ./utils/installer/install.sh - name: Test LunarVim PackerCompile |