Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: 2.0.0a0 is accidentally identified as 0.0.0 by pack script (#1…
…1388) The pack script defensively checks if there are any artifacts versioned 0.0.0 under the `dist/` directory. Python artifacts are named like so: `aws_cdk.aws_iotanalytics-2.0.0a0-py3-none-any.whl` and since by default grep uses regular expressions, this matches `grep 0.0.0`. The fix is to use `-F` so that the search string is not treated as regex.
- Loading branch information