7 lines
75 B
Bash
Executable File
7 lines
75 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# exit when any command fails
|
|
set -e
|
|
|
|
make -C hw/simulate run
|