From cff05908106780b69da5db5eefe60856ebc3a58b Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sun, 24 Nov 2024 00:13:47 -0800 Subject: [PATCH] Try to find out where the hell Perl is installed. While we're at it, et rid of the attempt to install Perl from the CircleCI configure file, as that doesn't seem to happen. --- .circleci/config.yml | 8 -------- .github/workflows/ghpages.yml | 2 ++ 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0eaa7f3..c93fc0d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,14 +6,6 @@ jobs: working_directory: ~/draft steps: - - run: - name: "Install Perl" - command: | - sudo apt-get update && \ - sudo apt-get install --assume-yes --quiet \ - --no-install-suggests --no-install-recommends \ - perl - - run: name: "Print Configuration" command: | diff --git a/.github/workflows/ghpages.yml b/.github/workflows/ghpages.yml index 9f8ae13..b19f6a9 100644 --- a/.github/workflows/ghpages.yml +++ b/.github/workflows/ghpages.yml @@ -25,6 +25,8 @@ jobs: sudo apt-get install --assume-yes --quiet \ --no-install-suggests --no-install-recommends \ perl + echo "Where's Waldo?" + find / -name '*perl*' -print - name: "Checkout" uses: actions/checkout@v2