From 23c4ea03dc80189eafa676033fddffaae174d62c Mon Sep 17 00:00:00 2001 From: StuffedAnon <stuffedgame@gmail.com> Date: Thu, 14 Mar 2019 07:50:25 +0900 Subject: [PATCH] compile-git - give the full path of the output --- compile | 3 +++ compile-git | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/compile b/compile index d44d129ab69..c9bb6c0cd57 100755 --- a/compile +++ b/compile @@ -66,3 +66,6 @@ fi #Make the output prettier, replacing \t with a tab and \n with a newline sed -i -e '/^.*<div id="store-area".*$/s/\\t/\t/g' -e '/^.*<div id="store-area".*$/s/\\n/\n/g' bin/FC_pregmod_tmp.html \ && mv bin/FC_pregmod_tmp.html bin/FC_pregmod.html + +echo "bin/FC_pregmod.html compilation finished." + diff --git a/compile-git b/compile-git index 92331b4916d..43304f9a109 100755 --- a/compile-git +++ b/compile-git @@ -41,4 +41,4 @@ $TWEEGO_EXE -o "bin/FC_pregmod_${HASH}_tmp.html" src/ sed -i -e '/^<div id="store-area".*$/s/\\t/\t/g' -e '/^<div id="store-area".*$/s/\\n/\n/g' "bin/FC_pregmod_${HASH}_tmp.html" \ && mv "bin/FC_pregmod_${HASH}_tmp.html" "bin/FC_pregmod_${HASH}.html" -echo "FC_pregmod_$HASH.html compilation finished." +echo "bin/FC_pregmod_$HASH.html compilation finished." -- GitLab