mirror of
https://github.com/corda/corda.git
synced 2024-12-29 01:08:57 +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
|
||
|
$@
|