Skip to content
Snippets Groups Projects
Commit bcdd916c authored by Alexander Kreft's avatar Alexander Kreft
Browse files

fix

parent 711c8b5a
No related branches found
No related tags found
1 merge request!12F safe inttest
#!/bin/bash
if [ $1 != "-force" ]
if [ "$1" != "-force" ]
then
echo "Warning: for these tests, the whole database is deleted. Do you want to proceed? (yes/exit)"
read safety
if [ $safety != "yes" ]
if [ -z $safety ]
then
echo "Exiting..."
exit 0
elif [ $safety != "yes" ]
then
echo "Exiting..."
exit 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment