mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-03-19 15:30:27 +00:00
12 lines
No EOL
238 B
Bash
Executable file
12 lines
No EOL
238 B
Bash
Executable file
#!/bin/sh
|
|
|
|
OutFile='../output/nodejs/postal.js'
|
|
|
|
cp version-header.js $OutFile
|
|
|
|
# Combine the source files
|
|
while read line; do
|
|
cat ../../$line >> $OutFile
|
|
done < SourceManifest-node.txt
|
|
|
|
cat ../boilerplate/node_footer.txt >> $OutFile |