postal.js/build/scripts/linux-build-browser-replay.sh

14 lines
No EOL
321 B
Bash
Executable file

#!/bin/sh
OutFile='../output/browser/postal.replay.js'
cp ./version-header.js $OutFile
cat ../boilerplate/generic_closure_header.txt >> $OutFile
# Combine the source files
while read line; do
cat ../../$line >> $OutFile
done < source-browser-replay.txt
cat ../boilerplate/generic_closure_footer.txt >> $OutFile