summaryrefslogtreecommitdiff
path: root/src/fauxton/rebuild
blob: 42219c0456dd4fd53d9ecbb0bb6366793172f0de (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

if [ -n "$1" ] && [ "$1" == "compile" ]; then
    jam compile -i js/main  -o jam/require.prod.js;
else
    if [ -e "jam/require.prod.js" ]; then
        rm jam/require.prod.js;
    fi
fi