minio/mint/run/core/minio-dotnet/run.sh

14 lines
284 B
Bash
Raw Normal View History

2019-07-10 03:32:39 +02:00
#!/bin/bash
#
#
# handle command line arguments
if [ $# -ne 2 ]; then
echo "usage: run.sh <OUTPUT-LOG-FILE> <ERROR-LOG-FILE>"
exit 1
2019-07-10 03:32:39 +02:00
fi
output_log_file="$1"
error_log_file="$2"
/mint/run/core/minio-dotnet/out/Minio.Functional.Tests 1>>"$output_log_file" 2>"$error_log_file"