mirror of
https://github.com/corda/corda.git
synced 2024-12-26 16:11:12 +00:00
10 lines
117 B
Bash
10 lines
117 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
function finish {
|
|
sudo modprobe -r isgx
|
|
}
|
|
trap finish EXIT
|
|
sudo modprobe isgx
|
|
$@
|