Marco Platania | bad325e | 2019-08-16 10:32:58 -0400 | [diff] [blame^] | 1 | #!/bin/bash |
2 | |||||
3 | IFS=' | ||||
4 | ' | ||||
5 | |||||
6 | if [ -z $1 ]; then | ||||
7 | echo "ONAP component name missing" | ||||
8 | echo "Usage: ./cleanup.sh onap_component_name" | ||||
9 | exit 1 | ||||
10 | fi | ||||
11 | |||||
12 | ( cd scripts; ./cleanup.sh $1 onap dev ) |