-
Notifications
You must be signed in to change notification settings - Fork 171
Closed
Labels
Description
Describe the bug
When using folder names that include not alphanumeric characters,
Steps to reproduce
- In the pull pipeline, configure the folder variable as such
- name: folder
value: "azops/pdev (pdev)"
- name: folder
- Run the pipeline
code to address problem
- task: Bash@3
displayName: "Add file content to index"
inputs:
targetType: "inline"
script: |
folderpath="$(folder)"
git add "./$folderpath"
git status --short
condition: contains(variables['state'], 'continue')
Reactions are currently unavailable

