docs: fix broken GDAL link in cli-raster README - #3656
Merged
Conversation
The GDAL link in packages/cli-raster/README.md pointed to github.com/gdal/gdal, which returns a 404. GDAL's real GitHub home is the OSGeo org, github.com/OSGeo/gdal. This updates the link to the correct, working page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
The GDAL link in
packages/cli-raster/README.mdpoints tohttps://github.com/gdal/gdal, which does not exist (404).GDAL's real GitHub home is the OSGeo org:
https://github.com/OSGeo/gdal.A reader following the doc link to learn more about GDAL hits a dead end.
Modifications
packages/cli-raster/README.md: fixed the[GDAL]link to point tohttps://github.com/OSGeo/gdalinstead of the non-existenthttps://github.com/gdal/gdal.Verification
curl -o /dev/null -w '%{http_code}' https://github.com/gdal/gdal→404.curl -o /dev/null -w '%{http_code}' https://github.com/OSGeo/gdal→200.packages/cli-rasterhas no separate lint/build step for its README; the repo-widebuildCI job (typecheck/lint/test vialinz/action-typescript@v3) covers this PR.