From de3aa13f6fa35bbf9c8b3c27be48e1ce8afa5b1f Mon Sep 17 00:00:00 2001 From: Cyrille Date: Fri, 11 Oct 2019 05:09:01 +0900 Subject: [PATCH] fix: make update script compatible with both MacOS and Linux Fix sed inplace option to run with both GNU sed and MacOS sed. Previous use of sed may have only worked on MacOS. See #52 --- update_academic.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_academic.sh b/update_academic.sh index 74ace43..5167224 100755 --- a/update_academic.sh +++ b/update_academic.sh @@ -31,7 +31,7 @@ function do_update () { version=$(sed -n 's/^min_version = //p' themes/academic/theme.toml | tr -d '"') version="${version}.0" echo "Set Netlify Hugo version to v${version}" - sed -i '' -e "s/HUGO_VERSION = .*/HUGO_VERSION = \"$version\"/g" ./netlify.toml + sed -i.bak -e "s/HUGO_VERSION = .*/HUGO_VERSION = \"$version\"/g" ./netlify.toml && rm -f ./netlify.toml.bak fi echo