You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm creating some pipelines for some colleagues who develop in UIPath, and I was analysing the scripts you share and I'm getting some errors. Analysing the UiPathPack.ps1 script, I noticed that when you are creating the parameters for the uipcli, it seems to me that you have an error in the project_path parameters and in the destination_folder, which is precisely where I'm getting the errors.
You have like this:
$ParamList.Add("`"$project_path`"")
$ParamList.Add("`"$destination_folder`"")
It should not be:
$ParamList.Add("`"$project_path"`")
$ParamList.Add("`"$destination_folder"`")
In addition to this topic, I'd like to congratulate you on the great help you're giving with this issue.
Best regards,
Luis Pinto
The text was updated successfully, but these errors were encountered:
Hello @SE-Abdullah,
I'm creating some pipelines for some colleagues who develop in UIPath, and I was analysing the scripts you share and I'm getting some errors. Analysing the UiPathPack.ps1 script, I noticed that when you are creating the parameters for the uipcli, it seems to me that you have an error in the project_path parameters and in the destination_folder, which is precisely where I'm getting the errors.
You have like this:
$ParamList.Add("`"$project_path`"")
$ParamList.Add("`"$destination_folder`"")
It should not be:
$ParamList.Add("`"$project_path"`")
$ParamList.Add("`"$destination_folder"`")
In addition to this topic, I'd like to congratulate you on the great help you're giving with this issue.
Best regards,
Luis Pinto
The text was updated successfully, but these errors were encountered: