fomu-workshop/litex
Tim 'mithro' Ansell 4dc82da0e9 Make lxbuildenv.py return 0 on success.
`sys.exit` raises a `SystemExit` exception which causes a bare except to
always trigger. IE the below always prints hello.

```python
import sys
try:
	sys.exit(0)
except:
	print("Hello")
```

However, SystemExit doesn't inherit from Exception, so the following
works as expected.

```python
import sys
try:
	sys.exit(0)
except Exception:
	print("Hello")
```
2020-01-05 09:13:24 -08:00
..
bin litex: move examples into litex/ directory 2019-06-19 14:31:43 -07:00
deps Updating ValentyUSB. 2020-01-02 12:37:11 +00:00
rtl litex: move examples into litex/ directory 2019-06-19 14:31:43 -07:00
lxbuildenv.py Make lxbuildenv.py return 0 on success. 2020-01-05 09:13:24 -08:00
workshop_rgb.py Updating ValentyUSB. 2020-01-02 12:37:11 +00:00
workshop.py Updating ValentyUSB. 2020-01-02 12:37:11 +00:00