slim down build script slightly

This commit is contained in:
Iris Lightshard 2022-08-14 00:58:44 -06:00
parent c75b07fc32
commit 14f1abffa9
Signed by: Iris Lightshard
GPG key ID: 3B7FBC22144E6398

View file

@ -8,15 +8,6 @@ if [ ! -z "$1" ]; then
progname=$1
fi
# remove existing concatenated source file and source map
if [ -e ${progname}.ts ]; then
rm ${progname}.ts
fi
if [ -e .srcmap ]; then
rm .srcmap
fi
# build the source map and concatenate the source
for f in *.ts; do
lines=$(wc -l ${f})