My configuration files for Debian/Ubuntu applications
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- check_dir_exists_helper() {
- [ -d "$1" ]
- }
-
- # runs the scripts and asserts it has the correct output and exit code
- script_run_helper() {
- local script="$1"
- local expected_output="$2"
- local expected_exit_code="${3:-0}"
- $script 2>&1 |
- grep "$expected_output" >/dev/null 2>&1 && # grep -q flag quits the script early
- [ "${PIPESTATUS[0]}" -eq "$expected_exit_code" ]
- }
|