Browse Source

[scripts] use a more portable bash shebang

tags/7.5
Sébastien Lesaint 5 years ago
parent
commit
41df354386

+ 1
- 1
enable-organizations.sh View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# the user "admin" becomes root and can create organizations


+ 1
- 1
run-db-unit-tests.sh View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -euo pipefail

ORCHESTRATOR_CONFIG_URL=$1

+ 1
- 1
run-integration-tests.sh View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Run integration tests. SonarQube must be already built in order to
# make the ZIP file available for tests.


+ 1
- 1
run-perf-tests.sh View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -euo pipefail

echo 'Run performance tests'

+ 2
- 2
run-upgrade-tests.sh View File

@@ -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 \
$*
$*

+ 1
- 1
scripts/editions.sh View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

set -euo pipefail


+ 1
- 1
scripts/generate_batch_reports.sh View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

##############################
#

+ 1
- 1
scripts/logs.sh View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
###############################
# usage: logs.sh [ -e ARG ] [ -l ARG ] [ -n ARG ]
# -e ARG: edition to run

+ 1
- 1
scripts/property_utils.sh View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
###############################
# exposes library functions to modify properties in a property
#

+ 1
- 1
scripts/replay_batch.sh View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

set -euo pipefail


+ 1
- 1
scripts/start.sh View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
###############################
# usage: start.sh [ -e ARG ] [ -p ARG ] [ -l ARG ]
# -e ARG: edition to run

+ 1
- 1
scripts/stop.sh View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
###############################
# Shortcut to stop server. It must be already built.
###############################

+ 1
- 1
travis.sh View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -euo pipefail

./.travis/setup_ramdisk.sh

Loading…
Cancel
Save