Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjphillips2011-06-02 21:19:35 +0000
committerRyan D. Brooks2011-06-02 21:19:35 +0000
commit5cf3844a4f6260e01705735751191b4422f2a180 (patch)
tree63d4efb14cb791e1e8d72f624168fbaf530e7c79 /plugins/org.eclipse.osee.define
parentb8963787d44b6164900308c18dd507fb1a940042 (diff)
downloadorg.eclipse.osee-5cf3844a4f6260e01705735751191b4422f2a180.tar.gz
org.eclipse.osee-5cf3844a4f6260e01705735751191b4422f2a180.tar.xz
org.eclipse.osee-5cf3844a4f6260e01705735751191b4422f2a180.zip
refinement: Add an argument to turn on/off skipping errors for the publish vb script
Diffstat (limited to 'plugins/org.eclipse.osee.define')
-rw-r--r--plugins/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/PublishWithSpecifiedTemplate.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/PublishWithSpecifiedTemplate.java b/plugins/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/PublishWithSpecifiedTemplate.java
index c20a5a84aa1..eb5baff59d7 100644
--- a/plugins/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/PublishWithSpecifiedTemplate.java
+++ b/plugins/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/PublishWithSpecifiedTemplate.java
@@ -87,7 +87,9 @@ public class PublishWithSpecifiedTemplate extends AbstractBlam {
WordTemplateRenderer.UPDATE_PARAGRAPH_NUMBER_OPTION,
variableMap.getBoolean("Update Paragraph Numbers"),
ITemplateRenderer.TRANSACTION_OPTION,
- transaction};
+ transaction,
+ IRenderer.SKIP_ERRORS,
+ true};
renderer.publish(master, slave, artifacts, options);
transaction.execute();

Back to the top