Skip to main content
summaryrefslogtreecommitdiffstats
blob: f7e0cb45a9ec1ae35d921a156e6d2b2977cd65d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/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

Back to the top