소스 검색

test: change to /usr/bin/env bash

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
Christina Sørensen 2 년 전
부모
커밋
4dcf927622
6개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 1
      devtools/dev-create-test-filesystem.sh
  2. 1 1
      devtools/dev-fixtures.sh
  3. 1 1
      devtools/dev-run-debug.sh
  4. 1 1
      devtools/dev-run-release.sh
  5. 1 1
      devtools/dev-set-up-environment.sh
  6. 1 1
      xtests/run.sh

+ 1 - 1
devtools/dev-create-test-filesystem.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 # This script creates a bunch of awkward test case files. It gets
 # automatically run as part of Vagrant provisioning.
 trap 'exit' ERR

+ 1 - 1
devtools/dev-fixtures.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 # This file contains the text fixtures — the known, constant data — that are
 # used when setting up the environment that exa’s tests get run in.
 

+ 1 - 1
devtools/dev-run-debug.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 if [[ -f ~/target/debug/exa ]]; then
   ~/target/debug/exa "$@"
 else

+ 1 - 1
devtools/dev-run-release.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 if [[ -f ~/target/release/exa ]]; then
   ~/target/release/exa "$@"
 else

+ 1 - 1
devtools/dev-set-up-environment.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 
 if [[ ! -d "/vagrant" ]]; then
     echo "This script should be run in the Vagrant environment"

+ 1 - 1
xtests/run.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 trap 'exit' ERR
 
 # Check for release mode