Shanedell commented on pull request #63:
URL: https://github.com/apache/daffodil-vscode/pull/63#issuecomment-996256898


   Okay so try these steps:
   - 1.) Uninstall extension and delete the VSIX file
   - 2.) Reload VSCode
   - 3.) Remove both of these folders
   ```
   ~/.local/share/daffodil-dap
   server/core/target/
   ```
   - 4.) Run `yarn build`
   - 5.) Install the VSIX file
   - 6.) Try running schema again
   
   ---
   
   If this does not work I think best way for me to pin point where the issue 
is doing this.
   
   Can you edit this file
   
   ```
   
~/.local/share/daffodil-dap/daffodil-debugger-3.1.0-1.0.0-SNAPSHOT/bin/daffodil-debugger
   ```
   
   Edit these lines
   
   ```
     if [[ "$DAFFODIL_DEBUG_CLASSPATH" != "" ]]; then
       app_classpath="$app_classpath:$DAFFODIL_DEBUG_CLASSPATH"
     fi
   ```
   
   to be
   
   ```
     if [[ "$DAFFODIL_DEBUG_CLASSPATH" != "" ]]; then
       echo "$DAFFODIL_DEBUG_CLASSPATH" > output
       app_classpath="$app_classpath:$DAFFODIL_DEBUG_CLASSPATH"
     fi
   ```
   
   After saving try debug the schema again and then post a comment here with 
the contents of this file
   
   ```
   ~/.local/share/daffodil-dap/daffodil-debugger-3.1.0-1.0.0-SNAPSHOT/bin/output
   ```
   
   If this file does not exist after doing this then it is a different than I 
am thinking is happening.
   


-- 
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