-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1270 from nextcloud/feat/tool/find-relative-markd…
…own-links
- Loading branch information
Showing
8 changed files
with
26 additions
and
20 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Dynamite end to end test | ||
|
||
This package contains OpenAPI specs to test the [dynamite](../dynamite) generator. | ||
This package contains OpenAPI specs to test the [dynamite](https://github.com/nextcloud/neon/tree/main/packages/dynamite/dynamite) generator. | ||
This package is not meant for publishing. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# dynamite petstore example | ||
|
||
An example showcasing the [dynamite generator](../dynamite) for OpenAPI using the [Swagger Petstore](https://github.com/swagger-api/swagger-petstore). | ||
An example showcasing the [dynamite generator](https://github.com/nextcloud/neon/tree/main/packages/dynamite/dynamite) for OpenAPI using the [Swagger Petstore](https://github.com/swagger-api/swagger-petstore). |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# nextcloud_test | ||
|
||
A helper package for running tests in the [nextcloud](../nextcloud) package. | ||
A helper package for running tests in the [nextcloud](https://github.com/nextcloud/neon/tree/main/packages/nextcloud) package. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
set -euxo pipefail | ||
cd "$(dirname "$0")/.." | ||
|
||
relative_markdown_links=("$(grep -r packages --include "*\.md" -e "\[.*\]\((?!http).*\)" -l -P || true)") | ||
|
||
if [[ -n "${relative_markdown_links[*]}" ]]; then | ||
printf "%s\n" "${relative_markdown_links[@]}" | ||
exit 1 | ||
fi |