diff options
author | cos <cos> | 2024-08-17 15:16:39 +0200 |
---|---|---|
committer | cos <cos> | 2024-08-17 20:04:54 +0200 |
commit | 67e3ff1e166d24953a05292c6257f24bcf255fae (patch) | |
tree | cfadf08176e1dd25b5d117cc3c6da0e97136e2fa | |
parent | 267be9e15c98a2f3f78b424e967ea2f63af92e25 (diff) | |
download | todo.txt-vim-67e3ff1e166d24953a05292c6257f24bcf255fae.zip |
Make testscript executable, with portable shebangfix/bash-path
-rwxr-xr-x[-rw-r--r--] | tests/clean-vim.sh | 2 | ||||
-rwxr-xr-x[-rw-r--r--] | tests/runtests.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/clean-vim.sh b/tests/clean-vim.sh index 8838151..2d53675 100644..100755 --- a/tests/clean-vim.sh +++ b/tests/clean-vim.sh @@ -1,4 +1,4 @@ -#/bin/bash +#!/usr/bin/env bash # Start a clean vim for testing development. diff --git a/tests/runtests.sh b/tests/runtests.sh index 368140f..ceccba3 100644..100755 --- a/tests/runtests.sh +++ b/tests/runtests.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash REPO_TOP=$(git rev-parse --show-toplevel) cd "${REPO_TOP}" |