Skip to content

Commit

Permalink
Script to run add-gradle-to-eclipse on all projects that need it.
Browse files Browse the repository at this point in the history
  • Loading branch information
IanDarwin committed Nov 18, 2016
1 parent 55a8b5c commit 43a56f6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions duellingIDEs/duel-all
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
for d in ../[A-Z]*/
do
if [ -f $d/.classpath ]; then
if [ ! -f $d/build.gradle ]; then
# likely candidate
echo $d
duellingIDEs/add-gradle-to-eclipse $d
fi
fi
done

0 comments on commit 43a56f6

Please sign in to comment.