From 0c6164bd9d7c367085dc0a68937abfb3ca7f9f59 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Wed, 27 Jan 2021 04:58:17 -0300 Subject: [PATCH] build.sh: replace bash with sh For increased portability. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index f7d8c69..0f737c1 100755 --- a/build.sh +++ b/build.sh @@ -1,2 +1,2 @@ -#!/bin/bash +#!/bin/sh gcc src/fe.c -DFE_STANDALONE -O3 -o fe -Wall -Wextra -std=c89 -pedantic