blob: f7e0cb45a9ec1ae35d921a156e6d2b2977cd65d2 [file] [log] [blame]
#!/usr/bin/env bash
# I am not sure what this is for?
for file in drops4/*
do
if [[ -d $file ]]
then
echo "copying testConfigs.php to $file/"
cp testConfigs.php $file/
fi
done