You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge pull request #11109 from ben-albrecht/trailing-slashes-are-dangerous
Remove trailing slashes for consistent BSD/GNU cp
GNU cp does not recognize trailing slashes, so this PR removes them to avoid inconsistent behavior across platforms.
Prior to this PR, we were getting an inconsistency in the docs path:
```
# BSD (good)
chapel/doc/html/builtins/*.chpl
# GNU (bad)
chapel/doc/html/builtins/internal/*.chpl
```
This resulted in an inconsistency between our docs built nightly (built on linux) vs. release docs (built on OS X).
[Reviewed by @ronawho]
0 commit comments