Skip to content

Commit dc70247

Browse files
Add command to generate packages list for release description
1 parent c058388 commit dc70247

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,7 @@ vcpkg-export-20170802-233045.7z -> vcpkg-export-x64-windows-v140.7z
3131
```
3232
github-release upload --user vcmi --repo vcmi-deps-windows --tag v1 --name "vcpkg-export-x86-windows-v140.7z" --file vcpkg-export-x86-windows-v140.7z --security-token 9eatokentokentokentokentoken6e
3333
```
34+
* Package list can be generated with:
35+
```
36+
echo -e "\n| Package | Version |\n| --- | --- |"; ./vcpkg list | grep x86 | grep -v static | awk '{ print "| " $1 " | " $2 " |"}' | sed -r 's/:x86-windows//'
37+
```

0 commit comments

Comments
 (0)