We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83ed842 commit 874b185Copy full SHA for 874b185
.github/workflows/ci_tests_dev.yaml
@@ -104,7 +104,8 @@ jobs:
104
# Build GMT from source on Linux/macOS, script is adapted from
105
# https://github.com/GenericMappingTools/gmt/blob/6.5.0/ci/build-gmt.sh
106
- name: Build GMT from source
107
- shell: bash
+ # Use non-login shell on Windows and login shell on Linux/macOS
108
+ shell: ${{ runner.os == 'Windows' && 'bash' || 'bash -l {0}' }}
109
run: |
110
cd gmt/
111
mkdir build
0 commit comments