mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-08 19:10:31 +00:00
10 lines
222 B
Bash
10 lines
222 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# `SECRET_PROJECT_ROOT` must be set before running the script.
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Running all the bats-tests:
|
||
|
cd "${SECRET_PROJECT_ROOT}"; rm -rf temp; mkdir temp; cd temp;
|
||
|
bats "${SECRET_PROJECT_ROOT}/tests"
|