소스 검색

[scripts] use a more portable bash shebang

tags/7.5
Sébastien Lesaint 6 년 전
부모
커밋
41df354386
13개의 변경된 파일14개의 추가작업 그리고 14개의 파일을 삭제
  1. 1
    1
      enable-organizations.sh
  2. 1
    1
      run-db-unit-tests.sh
  3. 1
    1
      run-integration-tests.sh
  4. 1
    1
      run-perf-tests.sh
  5. 2
    2
      run-upgrade-tests.sh
  6. 1
    1
      scripts/editions.sh
  7. 1
    1
      scripts/generate_batch_reports.sh
  8. 1
    1
      scripts/logs.sh
  9. 1
    1
      scripts/property_utils.sh
  10. 1
    1
      scripts/replay_batch.sh
  11. 1
    1
      scripts/start.sh
  12. 1
    1
      scripts/stop.sh
  13. 1
    1
      travis.sh

+ 1
- 1
enable-organizations.sh 파일 보기

@@ -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 파일 보기

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

ORCHESTRATOR_CONFIG_URL=$1

+ 1
- 1
run-integration-tests.sh 파일 보기

@@ -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 파일 보기

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

echo 'Run performance tests'

+ 2
- 2
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 \
$*
$*

+ 1
- 1
scripts/editions.sh 파일 보기

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

set -euo pipefail


+ 1
- 1
scripts/generate_batch_reports.sh 파일 보기

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

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

+ 1
- 1
scripts/logs.sh 파일 보기

@@ -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 파일 보기

@@ -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 파일 보기

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

set -euo pipefail


+ 1
- 1
scripts/start.sh 파일 보기

@@ -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 파일 보기

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

+ 1
- 1
travis.sh 파일 보기

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

./.travis/setup_ramdisk.sh

Loading…
취소
저장