mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
cad9d6a84f
storage/ndb/test/run-test/atrt-gather-result.sh: remove backup from results tars aswell storage/ndb/test/run-test/autotest-run.sh: add permissions storage/ndb/test/run-test/main.cpp: make it work also on dl145a
16 lines
151 B
Bash
Executable file
16 lines
151 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
mkdir -p result
|
|
cd result
|
|
rm -rf *
|
|
|
|
while [ $# -gt 0 ]
|
|
do
|
|
rsync -a --exclude='BACKUP' --exclude='ndb_*_fs' "$1" .
|
|
shift
|
|
done
|
|
|
|
|
|
|