--- a/trunk/cforge/cforge/Package/CFORGE/Scripts/action.svn.update.py
+++ b/trunk/cforge/cforge/Package/CFORGE/Scripts/action.svn.update.py
@@ -25,19 +25,23 @@
     req.password = password
     req.save = True # Optional
 
-svn.auth_username_password += set_username
 # checkout plain SVN files
 pysvn.svn_update_non_codesys(username, password, path)
 
 # iterate over all projects and libraries
-for root, dirs, files in os.walk(path):
-    for file in files:
-        if file.endswith(".project") or file.endswith(".library"):
-			filepath = os.path.join(root, file)
-			proj = projects.open(filepath)
-			proj.svn.update()
-			proj.save()
-			proj.close()
+try:
+    svn.auth_username_password += set_username
+    for root, dirs, files in os.walk(path):
+        for file in files:
+            if file.endswith(".project") or file.endswith(".library"):
+		filepath = os.path.join(root, file)
+		proj = projects.open(filepath)
+		proj.svn.update()
+		proj.save()
+		proj.close()
+except:
+    print "Seems like the CODESYS SVN package is missing. Checked out only plain files and no CODESYS projects."
+    pass
 
 system.exit()