Skip to content

Commit 422708f

Browse files
committed
bash on windows-latest now reports cygwin
1 parent f35134b commit 422708f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

testing/get-coursier.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
33

4-
if [ "$OSTYPE" = msys ]; then
4+
if [ "$OSTYPE" = cygwin ]; then
55
URL='https://github.com/coursier/coursier/releases/download/v2.1.0-RC4/cs-x86_64-pc-win32.zip'
66
SHA256='0d07386ff0f337e3e6264f7dde29d137dda6eaa2385f29741435e0b93ccdb49d'
77
TARGET='/tmp/coursier/cs.zip'

testing/get-dart.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -euo pipefail
33

44
VERSION=2.19.6
55

6-
if [ "$OSTYPE" = msys ]; then
6+
if [ "$OSTYPE" = cygwin ]; then
77
URL="https://storage.googleapis.com/dart-archive/channels/stable/release/${VERSION}/sdk/dartsdk-windows-x64-release.zip"
88
cygpath -w /tmp/dart-sdk/bin >> "$GITHUB_PATH"
99
else

0 commit comments

Comments
 (0)