From 517d44fa3c8f4d9ab8ecdb083444d096a415fa3f Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Thu, 11 Feb 2021 17:22:41 +0000 Subject: [PATCH] fix package name: --- .github/actions/linux-before-install.sh | 2 +- .github/workflows/build.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/linux-before-install.sh b/.github/actions/linux-before-install.sh index 6eed609c..06e555ac 100755 --- a/.github/actions/linux-before-install.sh +++ b/.github/actions/linux-before-install.sh @@ -1,6 +1,6 @@ echo "RUNNING: apt update..." sudo apt-get -qq --yes update > /dev/null -sudo apt-get -qq --yes install swig libpcslite-dev +sudo apt-get -qq --yes install swig libpcsclite-dev if [[ "$TRAVIS_JOB_NAME" == *"Testing" ]]; then export python="python" export pip="pip" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b6bc5655..ada96647 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -144,7 +144,7 @@ jobs: echo "gampath=${gampath}" >> $GITHUB_ENV echo "RUNNING: apt update..." sudo apt-get -qq --yes update > /dev/null - sudo apt-get -qq --yes install swig libpcslite-dev + sudo apt-get -qq --yes install swig libpcsclite-dev - name: Build and install Python, OpenSSL and PyInstaller if: matrix.goal != 'test' && steps.cache-primes.outputs.cache-hit != 'true'