Skip to content
Snippets Groups Projects
Commit 12d313d3 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'avoid-double-reloading' into 'pregmod-master'

Avoid double file reloading when using the bundled compile scripts

See merge request pregmodfan/fc-pregmod!3297
parents df6fa904 ecda1b20
No related branches found
No related tags found
No related merge requests found
...@@ -23,35 +23,37 @@ then ...@@ -23,35 +23,37 @@ then
./sanityCheck ./sanityCheck
fi fi
case "$(uname -m)" in export TWEEGO_PATH=devTools/tweeGo/storyFormats
x86_64|amd64) TWEEGO_EXE="tweego"
echo "x64 arch"
if [ "$(uname -s)" = "Darwin" ]; then if hash $TWEEGO_EXE 2>/dev/null; then
TWEEGO_EXE="./devTools/tweeGo/tweego_osx64" echo "system tweego binary"
else else
TWEEGO_EXE="./devTools/tweeGo/tweego_nix64" case "$(uname -m)" in
fi x86_64|amd64)
;; echo "x64 arch"
x86|i[3-6]86) if [ "$(uname -s)" = "Darwin" ]; then
echo "x86 arch" TWEEGO_EXE="./devTools/tweeGo/tweego_osx64"
if [ "$(uname -s)" = "Darwin" ]; then else
TWEEGO_EXE="./devTools/tweeGo/tweego_osx86" TWEEGO_EXE="./devTools/tweeGo/tweego_nix64"
else fi
TWEEGO_EXE="./devTools/tweeGo/tweego_nix86" ;;
fi x86|i[3-6]86)
;; echo "x86 arch"
arm*) if [ "$(uname -s)" = "Darwin" ]; then
echo "arm arch" TWEEGO_EXE="./devTools/tweeGo/tweego_osx86"
# tweego doesn't provide arm binaries so you have to build it yourself else
export TWEEGO_PATH=devTools/tweeGo/storyFormats TWEEGO_EXE="./devTools/tweeGo/tweego_nix86"
TWEEGO_EXE="tweego" fi
;; ;;
*) *)
echo "unsupported architecture" echo "No system tweego binary found, and no pecompiled binary for your platform available"
exit 2 echo "Please compile tweego and put the executable in PATH"
esac exit 2
esac
fi
$TWEEGO_EXE -o "bin/FC_pregmod.html" src/ || build_failed="true" $TWEEGO_EXE -o "bin/FC_pregmod_tmp.html" src/ || build_failed="true"
# Revert AlphaDisclaimer for next compilation # Revert AlphaDisclaimer for next compilation
git checkout -- src/gui/mainMenu/AlphaDisclaimer.tw git checkout -- src/gui/mainMenu/AlphaDisclaimer.tw
...@@ -62,4 +64,5 @@ then ...@@ -62,4 +64,5 @@ then
fi fi
#Make the output prettier, replacing \t with a tab and \n with a newline #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.html 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
...@@ -5,37 +5,40 @@ ...@@ -5,37 +5,40 @@
HASH="$(git rev-list -n 1 --abbrev-commit HEAD)" HASH="$(git rev-list -n 1 --abbrev-commit HEAD)"
case "$(uname -m)" in export TWEEGO_PATH=devTools/tweeGo/storyFormats
x86_64|amd64) TWEEGO_EXE="tweego"
echo "x64 arch"
if [ "$(uname -s)" = "Darwin" ]; then
TWEEGO_EXE="./devTools/tweeGo/tweego_osx64"
else
TWEEGO_EXE="./devTools/tweeGo/tweego_nix64"
fi
;;
x86|i[3-6]86)
echo "x86 arch"
if [ "$(uname -s)" = "Darwin" ]; then
TWEEGO_EXE="./devTools/tweeGo/tweego_osx86"
else
TWEEGO_EXE="./devTools/tweeGo/tweego_nix86"
fi
;;
arm*)
echo "arm arch"
# tweego doesn't provide arm binaries so you have to build it yourself
export TWEEGO_PATH=devTools/tweeGo/storyFormats
TWEEGO_EXE="tweego"
;;
*)
echo "unsupported architecture"
exit 2
esac
$TWEEGO_EXE -o "bin/FC_pregmod_$HASH.html" src/ if hash $TWEEGO_EXE 2>/dev/null; then
echo "system tweego binary"
else
case "$(uname -m)" in
x86_64|amd64)
echo "x64 arch"
if [ "$(uname -s)" = "Darwin" ]; then
TWEEGO_EXE="./devTools/tweeGo/tweego_osx64"
else
TWEEGO_EXE="./devTools/tweeGo/tweego_nix64"
fi
;;
x86|i[3-6]86)
echo "x86 arch"
if [ "$(uname -s)" = "Darwin" ]; then
TWEEGO_EXE="./devTools/tweeGo/tweego_osx86"
else
TWEEGO_EXE="./devTools/tweeGo/tweego_nix86"
fi
;;
*)
echo "No system tweego binary found, and no pecompiled binary for your platform available"
echo "Please compile tweego and put the executable in PATH"
exit 2
esac
fi
$TWEEGO_EXE -o "bin/FC_pregmod_${HASH}_tmp.html" src/
#Make the output prettier, replacing \t with a tab and \n with a newline #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_$HASH.html" 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 "FC_pregmod_$HASH.html compilation finished."
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment