From 36b1dd9aa9cf9d1246b67f373918ba41647703cc Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Wed, 11 Oct 2023 01:25:38 -0400 Subject: [PATCH] Add quotes around globs --- .github/actions/build-dependencies/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/build-dependencies/action.yml b/.github/actions/build-dependencies/action.yml index 8bdd41e80..3f0a42ded 100644 --- a/.github/actions/build-dependencies/action.yml +++ b/.github/actions/build-dependencies/action.yml @@ -23,10 +23,10 @@ runs: - name: Remove unused packages shell: bash run: | - sudo apt remove -y *msbuild* *powershell* *nuget* *bazel* *ansible* *terraform* *heroku* *aws* *azure* - sudo apt remove -y *nvm* *nodejs* *npm* *yarn* *java* *kotlin* *go* *swift* *julia* *fortran* *android* - sudo apt remove -y *apache2* *nginx* *firefox* *chromium* *chrome* *edge* - sudo apt remove -y *qemu* *sql* *texinfo* *imagemagick* + sudo apt remove -y "*msbuild*" "*powershell*" "*nuget*" "*bazel*" "*ansible*" "*terraform*" "*heroku*" "*aws*" "*azure*" + sudo apt remove -y "*nvm*" "*nodejs*" "*npm*" "*yarn*" "*java*" "*kotlin*" "*go*" "*swift*" "*julia*" "*fortran*" "*android*" + sudo apt remove -y "*apache2*" "*nginx*" "*firefox*" "*chromium*" "*chrome*" "*edge*" + sudo apt remove -y "*qemu*" "*sql*" "*texinfo*" "*imagemagick*" sudo apt autoremove -y sudo apt update sudo apt install python3 python3-pip -y