diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-05-01 07:39:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-01 07:39:27 +0200 |
| commit | e7da49d5bf224fcabd02800ae7f800363a32e3d0 (patch) | |
| tree | b43b334ca6decc1f21d361b83b5e016b6c326b90 /.github/scripts | |
| parent | edf05b005f34f59dd40468c36cc139e217345a71 (diff) | |
| download | rneovim-e7da49d5bf224fcabd02800ae7f800363a32e3d0.tar.gz rneovim-e7da49d5bf224fcabd02800ae7f800363a32e3d0.tar.bz2 rneovim-e7da49d5bf224fcabd02800ae7f800363a32e3d0.zip | |
ci: don't install unnecessary dependencies
Diffstat (limited to '.github/scripts')
| -rwxr-xr-x | .github/scripts/install_deps.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/scripts/install_deps.sh b/.github/scripts/install_deps.sh index bb99873267..32591eb8da 100755 --- a/.github/scripts/install_deps.sh +++ b/.github/scripts/install_deps.sh @@ -18,7 +18,7 @@ done os=$(uname -s) if [[ $os == Linux ]]; then $SUDO apt-get update - $SUDO apt-get install -y build-essential cmake curl gettext ninja-build pkg-config unzip + $SUDO apt-get install -y build-essential cmake curl gettext ninja-build unzip if [[ -n $TEST ]]; then $SUDO apt-get install -y locales-all cpanminus fi |