-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbake.py
executable file
·39 lines (36 loc) · 1.42 KB
/
bake.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
###############################################################################
# Copyright (c) 2013 INRIA
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation;
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Authors: Daniel Camara <[email protected]>
# Mathieu Lacage <[email protected]>
###############################################################################
# bake.py
#
# Bake executable, in fact it is just a wrapper for the main Bake class.
import sys
import bake
try:
b = bake.Bake()
b.main(sys.argv)
except SystemExit as e:
sys.exit(e)
except:
print(" > Unexpected exception!\n"
" Please register the error at https://www.nsnam.org/bugzilla, \n"
" with a copy of the trace below and, if possible, a list of steps to reproduce the error!<")
sys.stdout.flush()
bake.Utils.print_backtrace()