summaryrefslogtreecommitdiffstats
path: root/perf-framework/remove_export_dirs
blob: c84d881823557507e080e2ae1c44deafcc11ef8b (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash -ue

SERVER_EXPORT_DIR=$1

if [ "$SERVER_EXPORT_DIR" != "" -a "$SERVER_EXPORT_DIR" != "/" ]
then
	echo "$SERVER_EXPORT_DIR"
else
	echo "Empty export dir"
fi