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

14 lines
No EOL
323 B
Bash
Executable file

#!/bin/sh
OutFile='../output/browser/postal.capture.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-capture.txt
cat ../boilerplate/generic_closure_footer.txt >> $OutFile