haskell-updates: make sure the transitive-broken-packges are sorted using LC_ALL=C

This makes sure that the output list of transitive broken packages will
always be ordered the same regardless of the environment you are
running from.
This commit is contained in:
(cdep)illabout 2021-07-17 11:46:57 +09:00
parent 299082636c
commit ea2660f8d2
No known key found for this signature in database
GPG key ID: 462E0C03D11422F4

View file

@ -12,4 +12,4 @@ dont-distribute-packages:
EOF
echo "Regenerating list of transitive broken packages ..."
echo -e $(nix-instantiate --eval --strict maintainers/scripts/haskell/transitive-broken-packages.nix) | sed 's/\"//' | sort -i >> $config_file
echo -e $(nix-instantiate --eval --strict maintainers/scripts/haskell/transitive-broken-packages.nix) | sed 's/\"//' | LC_ALL=C.UTF-8 sort -i >> $config_file