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
## Summary of changes
Fixes the debug symbol upload in release job
## Reason for change
It broke with:
```
cp: cannot stat '/home/runner/work/dd-trace-dotnet/dd-trace-dotnet/tracer/bin/543c80fd22857677ec9a86bc52131eb2907d5899/*.zip': No such file or directory
```
## Implementation details
It turns out, bash globbing doesn't work like I thought it did 😅 I
_thought_ that shell expansion worked inside strings as long as they
were wrapped in `"` (and not `'`). But while that's true for _variable_
expansion, it's not true for expanding file paths etc.
i.e.
- ✅ `/some/path/*.zip` - expands globs
- ✅ `"/some/path/"*.zip` - expands globs
- ❌ `"/some/path/*.zip"` - does not expand globs
## Test coverage
Tested it locally to confirm
0 commit comments