mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-04-28 10:34:44 +00:00
14 lines
298 B
Bash
14 lines
298 B
Bash
|
|
#!/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
|