diff options
author | Harmen Stoppels <harmenstoppels@gmail.com> | 2021-11-26 19:03:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-26 18:03:05 +0000 |
commit | 4d6891162dd03705d6770e7242c50a07dc687fad (patch) | |
tree | 9757caa0f079891c2fc80659cb07c280e6029cac /.github | |
parent | 978f09182256297a11b9201628f376fd7f8c72e6 (diff) | |
download | spack-4d6891162dd03705d6770e7242c50a07dc687fad.tar.gz spack-4d6891162dd03705d6770e7242c50a07dc687fad.tar.bz2 spack-4d6891162dd03705d6770e7242c50a07dc687fad.tar.xz spack-4d6891162dd03705d6770e7242c50a07dc687fad.zip |
Use bash in setup_git.sh (#27676)
Diffstat (limited to '.github')
-rwxr-xr-x | .github/workflows/setup_git.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/setup_git.sh b/.github/workflows/setup_git.sh index e319e07512..4eb416720b 100755 --- a/.github/workflows/setup_git.sh +++ b/.github/workflows/setup_git.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env sh +#!/bin/bash -e git config --global user.email "spack@example.com" git config --global user.name "Test User" |