Skip to content
Snippets Groups Projects
Commit bc5c15ef authored by bors's avatar bors
Browse files

Auto merge of #1556 - senden9:patch-1, r=gnzlbg

Sort targets in documentation. Fixes #1524.

Should be a simple but effective fix for #1524. Assume `sort` command is available.
parents 6dae870e 57474228
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ cargo +nightly install cargo-xbuild -Z install-upgrade
# shellcheck disable=SC1003
grep '[\d|\w|-]* \\' ci/build.sh > targets
sed -i.bak 's/ \\//g' targets
grep '^[_a-zA-Z0-9-]*$' targets > tmp && mv tmp targets
grep '^[_a-zA-Z0-9-]*$' targets | sort > tmp && mv tmp targets
# Create a markdown list of supported platforms in $PLATFORM_SUPPORT
rm $PLATFORM_SUPPORT || true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment