[526927] Swallowed Exception in GitCloneTaskImpl

https://bugs.eclipse.org/bugs/show_bug.cgi?id=526927
diff --git a/plugins/org.eclipse.oomph.setup.git/src/org/eclipse/oomph/setup/git/impl/GitCloneTaskImpl.java b/plugins/org.eclipse.oomph.setup.git/src/org/eclipse/oomph/setup/git/impl/GitCloneTaskImpl.java
index cfcfbcf..cc1a50e 100644
--- a/plugins/org.eclipse.oomph.setup.git/src/org/eclipse/oomph/setup/git/impl/GitCloneTaskImpl.java
+++ b/plugins/org.eclipse.oomph.setup.git/src/org/eclipse/oomph/setup/git/impl/GitCloneTaskImpl.java
@@ -863,14 +863,21 @@
           context.log("Deleting the result of the canceled clone operation");
         }
 
-        FileUtil.delete(workDir, new NullProgressMonitor()
+        try
         {
-          @Override
-          public boolean isCanceled()
+          FileUtil.delete(workDir, new NullProgressMonitor()
           {
-            return false;
-          }
-        });
+            @Override
+            public boolean isCanceled()
+            {
+              return false;
+            }
+          });
+        }
+        catch (Exception deleteException)
+        {
+          context.log(deleteException);
+        }
       }
 
       if (ex instanceof OperationCanceledException)