From bfc867078aa464aa8824c0a7f27364e9f81e8211 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Sun, 29 Sep 2024 12:57:32 -0400 Subject: [PATCH] Sub test --- .github/workflows/windows.yml | 1 + sub-test.pl | 3 +++ 2 files changed, 4 insertions(+) create mode 100755 sub-test.pl diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index e91368c..cc2b624 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -25,6 +25,7 @@ jobs: /c/msys64/usr/bin/bash --noprofile --norc -eo pipefail ./test.sh ./test.sh ./test.pl + ./sub-test.pl - name: env (bash) shell: bash diff --git a/sub-test.pl b/sub-test.pl new file mode 100755 index 0000000..c163a50 --- /dev/null +++ b/sub-test.pl @@ -0,0 +1,3 @@ +#!/usr/bin/env perl +$ENV{'maybe'}='something'; +print join "\n", map { "$_=$ENV{$_}" } keys %ENV;