Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/build
blob: b90f0fa43cb5b55c1df8b2f2a1c981e71bfd7e3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

commandsdir=`dirname "$0"`
rootdir=`dirname "$commandsdir"`
helpersdir=$commandsdir/helpers

timestamp=`date +%Y%m%d-%H%M%S`
logfile=$rootdir/logs/build-$timestamp.log

PYTHONPATH=$commandsdir $helpersdir/build | tee -a $logfile

exit ${PIPESTATUS[0]}