CI: use bash for CI scripts

master
Daniel Kolesa 2021-04-15 20:53:35 +02:00
parent 86f9cbdc07
commit 9a6c3798b3
3 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
expected_triplet=$TARGET

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
expected_triplet=$TARGET

View File

@ -44,10 +44,10 @@ jobs:
persist-credentials: false
- name: Prepare environment
run: sh ./.ci/install-env
run: bash ./.ci/install-env
- name: Build and test cubescript
run: sh ./.ci/build-cs
run: bash ./.ci/build-cs
windows:
name: Windows
@ -80,7 +80,7 @@ jobs:
persist-credentials: false
- name: Prepare environment
run: sh ./.ci/install-env
run: bash ./.ci/install-env
- name: Build and test cubescript
run: sh ./.ci/build-cs
run: bash ./.ci/build-cs