From b543dea61c28e6ee190cb40a688c1766d0223232 Mon Sep 17 00:00:00 2001 From: Dawid Potocki Date: Sat, 28 Sep 2019 12:46:05 +1200 Subject: [PATCH] Replace bash with sh in build.sh for compatibility Systems like OpenBSD, FreeBSD, NetBSD or macOS (might be removed soon https://support.apple.com/en-us/HT208050) don't have bash installed. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index ebe27b86..f17060a4 100755 --- a/build.sh +++ b/build.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh set -e # halt script on error bundle exec jekyll build -- 2.47.2