Fix .gitignore to account for extensions.
diff --git a/.gitignore b/.gitignore
index 772dff5..f4ceeb7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,6 @@
-/build/
+build/
 target/
-/bin/
+bin/
 .project
 .classpath
 .settings/
diff --git a/compareBuilds.sh b/compareBuilds.sh
index b5298fd..63af7d6 100755
--- a/compareBuilds.sh
+++ b/compareBuilds.sh
@@ -16,7 +16,7 @@
 
 function findAndCompareJars {
   version=3.0
-  for ANT in `find -name "*-snapshot.jar" -path "./build/dist/*"`
+  for ANT in `find ./build/dist/* -name "*-snapshot.jar" `
   do
     if [ $ANT = "./build/dist/guice-snapshot.jar" ]; then  #Check main build
       MVN=./core/target/guice-$version-SNAPSHOT.jar
@@ -71,4 +71,4 @@
 echo
 findAndCompareJars
 echo
-echo "If the only thing that printed out is 'Comparing <thing>', then you're good!"
\ No newline at end of file
+echo "If the only thing that printed out is 'Comparing <thing>', then you're good!"