Skip to content
Snippets Groups Projects
Commit 0f4c71d8 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'tools' into 'pregmod-master'

CheckJS.sh and a fix to makeTwineJS

See merge request !6844
parents a593c90f bd746ff8
No related branches found
No related tags found
1 merge request!6844CheckJS.sh and a fix to makeTwineJS
#!/bin/sh
tmpJoinedFile=`mktemp --suffix=.js`
files=$(find js src -name '*.js' -print)
files=$(echo "$files" | sort)
for f in $files; do
printf "\n/* ${f} */\n" >> "$tmpJoinedFile"
cat "$f" >> "$tmpJoinedFile"
done
node -c "$tmpJoinedFile"
test $? -eq 0 && rm "$tmpJoinedFile"
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
# $1: root repo dir # $1: root repo dir
# $2: output file name # $2: output file name
collectJSForTwine() { collectJSForTwine() {
local files=$(find js src/js -path ./art/assistantArt.js -prune -o -name '*.js' -print) local files=$(find js src -path ./src/art/assistantArt.js -prune -o -name '*.js' -print)
files=$(echo "$files" | sort) files=$(echo "$files" | sort)
echo "" > "$2" echo "" > "$2"
for f in $files; do for f in $files; do
......
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