postal.js/build/scripts/linux-build-node.sh

12 lines
238 B
Bash
Raw Normal View History

2011-08-09 22:40:58 +00:00
#!/bin/sh
OutFile='../output/nodejs/postal.js'
2011-08-09 22:40:58 +00:00
cp version-header.js $OutFile
# Combine the source files
while read line; do
cat ../../$line >> $OutFile
done < SourceManifest-node.txt
2011-08-09 22:40:58 +00:00
cat ../boilerplate/node_footer.txt >> $OutFile