mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-03-30 21:00:27 +00:00
14 lines
No EOL
298 B
Bash
Executable file
14 lines
No EOL
298 B
Bash
Executable file
#!/bin/sh
|
|
|
|
OutFile='../output/browser/postal.js'
|
|
|
|
cp ./version-header.js $OutFile
|
|
|
|
cat ../boilerplate/browser_header.txt >> $OutFile
|
|
|
|
# Combine the source files
|
|
while read line; do
|
|
cat ../../$line >> $OutFile
|
|
done < source-browser-postal.txt
|
|
|
|
cat ../boilerplate/browser_footer.txt >> $OutFile |