I keep getting the below error when trying to follow the Integrating Archy with VS Code steps
Executing task: "C:\Program Files (x86)\Archy\archy.bat" publish --recreate --file "C:\Program Files (x86)\Archy\archyHome\dev\inboundCallHelloWorldFlow.yaml"
x86 : The term 'x86' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is
correct and try again.
At line:1 char:19
+ C:\Program Files (x86)\Archy\archy.bat publish --recreate --file C:\P ...
+ ~~~
+ CategoryInfo : ObjectNotFound: (x86:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
I have the tasks.json configured as below
"label": "archy create ( --recreate )",
"type": "shell",
"command": "\"C:\\Program Files (x86)\\Archy\\archy.bat\" create --recreate --file \"${file}\"",
"args": [
"create",
"--recreate",
"--file",
"${file}"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
#Archy------------------------------
Jared Pavlecic
------------------------------