3284ac6f0f187f734dc078de461c8d16c64c3663
[sim/o1-interface.git] / ntsimulator / scripts / model-uninstall.sh
1 #!/bin/bash
2
3 sleep 3
4
5 set -eu -o pipefail
6
7 shopt -s failglob
8
9 : ${SYSREPOCTL:=sysrepoctl}
10
11 echo "- Uninstalling microwave-model..."
12 $SYSREPOCTL --uninstall --module=microwave-model
13
14 echo "- Uninstalling core-model..."
15 $SYSREPOCTL --uninstall --module=core-model
16
17 exit 0