8 lines
195 B
Bash
8 lines
195 B
Bash
#!/bin/bash
|
|
|
|
# adapted from https://stackoverflow.com/questions/55921914/how-to-source-a-script-with-environment-variables-in-a-docker-build-process
|
|
|
|
. /home/riscvuser/chipyard/env.sh
|
|
|
|
exec "$@"
|