diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/contrib/build-perf-test-wrapper.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/contrib/build-perf-test-wrapper.sh b/scripts/contrib/build-perf-test-wrapper.sh index 7788bb1d1a..f192fcfa92 100755 --- a/scripts/contrib/build-perf-test-wrapper.sh +++ b/scripts/contrib/build-perf-test-wrapper.sh | |||
@@ -44,13 +44,13 @@ while getopts "ha:c:C:w:" opt; do | |||
44 | h) usage | 44 | h) usage |
45 | exit 0 | 45 | exit 0 |
46 | ;; | 46 | ;; |
47 | a) archive_dir=`realpath "$OPTARG"` | 47 | a) archive_dir=`realpath -s "$OPTARG"` |
48 | ;; | 48 | ;; |
49 | c) commitish=$OPTARG | 49 | c) commitish=$OPTARG |
50 | ;; | 50 | ;; |
51 | C) results_repo=`realpath -s "$OPTARG"` | 51 | C) results_repo=`realpath -s "$OPTARG"` |
52 | ;; | 52 | ;; |
53 | w) base_dir=`realpath "$OPTARG"` | 53 | w) base_dir=`realpath -s "$OPTARG"` |
54 | ;; | 54 | ;; |
55 | *) usage | 55 | *) usage |
56 | exit 1 | 56 | exit 1 |