Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
style: Remove trailing slash from static symlink #10045
Conversation
This is very minor, but when symlinking a directory the trailing slash is not needed and makes the output of `ls -l --classify` look a little funny. $ ls -l --classify lrwxr-xr-x 1 evan staff 24 Oct 8 16:25 static -> src/sentry/static/sentry// Where as with it removed it does not have the trailing slash: $ ls -l --classify lrwxr-xr-x 1 evan staff 24 Oct 8 16:25 static -> src/sentry/static/sentry/ Semantically it doesn't seem important [0]. [0]: https://unix.stackexchange.com/questions/7769/should-i-include-a-trailing-slash-in-a-symlink-to-a-directory
974ba8a
22e96f9
into
master
This is very minor, but when symlinking a directory the trailing slash is not needed and makes the output of `ls -l --classify` look a little funny. $ ls -l --classify lrwxr-xr-x 1 evan staff 24 Oct 8 16:25 static -> src/sentry/static/sentry// Where as with it removed it does not have the trailing slash: $ ls -l --classify lrwxr-xr-x 1 evan staff 24 Oct 8 16:25 static -> src/sentry/static/sentry/ Semantically it doesn't seem important [0]. [0]: https://unix.stackexchange.com/questions/7769/should-i-include-a-trailing-slash-in-a-symlink-to-a-directory
This is very minor, but when symlinking a directory the trailing slash is not needed and makes the output of
ls -l --classifylook a little funny.$ ls -l --classify
lrwxr-xr-x 1 evan staff 24 Oct 8 16:25 static -> src/sentry/static/sentry//
Where as with it removed it does not have the trailing slash:
$ ls -l --classify
lrwxr-xr-x 1 evan staff 24 Oct 8 16:25 static -> src/sentry/static/sentry/
Semantically it doesn't seem important.