postal.js/build/linux-build-node.sh
2011-08-09 18:40:58 -04:00

12 lines
No EOL
211 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.txt
cat NodeExports.js >> $OutFile