diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2018-05-30 16:02:57 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-06-12 20:21:01 +0200 |
commit | 41df35438631f365e434ca918b210733dcc78297 (patch) | |
tree | d5a8b801a2b667f67aff5d219159be872c552eaf /run-upgrade-tests.sh | |
parent | 24509fd25897474c1f70af4279fcdba4baab86d7 (diff) | |
download | sonarqube-41df35438631f365e434ca918b210733dcc78297.tar.gz sonarqube-41df35438631f365e434ca918b210733dcc78297.zip |
[scripts] use a more portable bash shebang
Diffstat (limited to 'run-upgrade-tests.sh')
-rwxr-xr-x | run-upgrade-tests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run-upgrade-tests.sh b/run-upgrade-tests.sh index d263cfa922e..a4c5d5961bc 100755 --- a/run-upgrade-tests.sh +++ b/run-upgrade-tests.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Run upgrade tests. SonarQube must be already built in order to # make the ZIP file available for tests. @@ -17,4 +17,4 @@ shift 1 :tests:integrationTest \ -Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \ -Dcategory=Upgrade \ - $*
\ No newline at end of file + $* |