diff options
-rw-r--r-- | hadrian/src/Rules/BinaryDist.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hadrian/src/Rules/BinaryDist.hs b/hadrian/src/Rules/BinaryDist.hs index 914039d9e8..7db11dddd0 100644 --- a/hadrian/src/Rules/BinaryDist.hs +++ b/hadrian/src/Rules/BinaryDist.hs @@ -234,6 +234,11 @@ bindistRules = do -- shipping it removeFile (bindistFilesDir -/- mingwStamp) + -- Include bash-completion script in binary distributions. We don't + -- currently install this but merely include it for the user's + -- reference. See #20802. + copyDirectory ("utils" -/- "completion") bindistFilesDir + -- These scripts are only necessary in the configure/install -- workflow which is not supported on windows. -- TODO: Instead of guarding against windows, we could offer the |