From 9a6c3798b3629aa29a4250b546f0c656e43f612c Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Thu, 15 Apr 2021 20:53:35 +0200 Subject: [PATCH] CI: use bash for CI scripts --- .ci/build-cs | 2 +- .ci/install-env | 2 +- .github/workflows/build.yaml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.ci/build-cs b/.ci/build-cs index a2f846a..5e033ac 100755 --- a/.ci/build-cs +++ b/.ci/build-cs @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash expected_triplet=$TARGET diff --git a/.ci/install-env b/.ci/install-env index 8a2bc41..10316cb 100755 --- a/.ci/install-env +++ b/.ci/install-env @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash expected_triplet=$TARGET diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a59ba85..92fee9b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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