Co-authored-by: Sebastian Parborg <sebastian@blender.org> Reviewed-on: https://projects.blender.org/infrastructure/gitea-custom/pulls/19
11 lines
208 B
Bash
Executable File
11 lines
208 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
SCRIPT=$(readlink -f "$0")
|
|
SCRIPT_PATH=$(dirname "$SCRIPT")
|
|
|
|
. "${SCRIPT_PATH}/common/functions"
|
|
|
|
run_tests_in_directory "${SCRIPT_PATH}/deny_binary"
|
|
rm -rf "${SCRIPT_PATH}/deny_binary/tmp" |