lrbarber commented on code in PR #1671:
URL: https://github.com/apache/daffodil-vscode/pull/1671#discussion_r3154574754


##########
src/adapter/activateDaffodilDebug.ts:
##########
@@ -323,12 +351,166 @@ export function activateDaffodilDebug(
               console.log(reason)
             })
         }
+      }
+    ),
+    vscode.commands.registerCommand(
+      'extension.dfdl-debug.zipTDML',
+      async (resource: vscode.Uri) => {
+        if (!fs.existsSync(getTmpTDMLFilePath())) {
+          vscode.window.showErrorMessage(
+            `TDML ERROR: Test suite not found. Ensure that the TDML action is 
set to "generate" for your DFDL debugging launch configuration before copying.`
+          )
+          console.error(
+            `TDML ERROR: Test suite not found. ${TMP_TDML_FILENAME} was not 
found in ${tmpdir()} for Copy TDML operation.`
+          )
+          return

Review Comment:
   Removed check for temporary tdml file.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to