summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-10 12:11:37 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-10 12:35:44 +0900
commitcd35c0954085758ec1fb5a5fcfb7d6d9d5e71a90 (patch)
tree6a788ed514673cc5e7a0f3c97916bfd726d1f427
parentec931ee9e13b939f6693032564ee9beeec5a4a1f (diff)
[cygwin] Removed unnecessary `-c` options
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2734
-rw-r--r--.github/workflows/cygwin.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml
index 09df0f24ab..4d3caa7755 100644
--- a/.github/workflows/cygwin.yml
+++ b/.github/workflows/cygwin.yml
@@ -56,18 +56,18 @@ jobs:
shell: cmd
- name: Actions-commit-info.sh
run: |
- bash.exe -c "./src/tool/actions-commit-info.sh"
+ bash ./src/tool/actions-commit-info.sh
shell: cmd
- name: Autoconf
run: |
cd src
- bash.exe -c autoconf
+ bash /usr/bin/autoconf
shell: cmd
- name: Configure
run: |
md build
cd build
- bash -c ../src/configure
+ bash ../src/configure
shell: cmd
- name: make
run: |