From 58acf45ad333abfbe829f1ae4932321f8dd0d3f5 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 28 Mar 2020 13:40:30 -0400 Subject: [PATCH] Sed inplace is not great across GNU vs BSD... --- build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index d2a7115..8d7d254 100755 --- a/build.sh +++ b/build.sh @@ -23,4 +23,5 @@ cp LICENSE.txt $OUTDIR # "Preprocess" the dist package.json. cp ./package.json $OUTDIR -sed -i='' -e s@\"dist/@\"@ $OUTDIR/package.json +sed -i.bak -e s@\"dist/@\"@ $OUTDIR/package.json +rm $OUTDIR/package.json.bak -- 2.22.5