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
This commit is part of merge request !12. Comments created here will be created in the context of that merge request.
#!/bin/bash #!/bin/bash
if [ $1 != "-force" ] if [ "$1" != "-force" ]
then then
echo "Warning: for these tests, the whole database is deleted. Do you want to proceed? (yes/exit)" echo "Warning: for these tests, the whole database is deleted. Do you want to proceed? (yes/exit)"
read safety read safety
if [ $safety != "yes" ] if [ -z $safety ]
then
echo "Exiting..."
exit 0
elif [ $safety != "yes" ]
then then
echo "Exiting..." echo "Exiting..."
exit 0 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