-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhanced check_schema with additional schema fallbacks
The schema is searched in various places: - URL given as xs:noNamespaceSchemaLocation in PDSC file - URL inferred from schemaVersion in PDSC file - URL of latest schema on GitHub
- Loading branch information
1 parent
dc9608d
commit 2cb9a93
Showing
7 changed files
with
115 additions
and
16 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
function echo_v { | ||
if [[ $VERBOSE == 1 ]]; then | ||
echo $* | ||
fi | ||
} |
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,12 +1,13 @@ | ||
|
||
function usage { | ||
cat << EOF | ||
Usage: $(basename $0) [-h] [-k] [-c <prefix>] [<pdsc>] | ||
Usage: $(basename $0) [-h] [-k] [-c <prefix>] [-v] [<pdsc>] | ||
|
||
Arguments: | ||
-h, --help Print this usage message and exit. | ||
-k, --keep Keep build directory. | ||
-c, --changelog <prefix> Generate changelog. Tags are filterd for <prefix> | ||
-c, --changelog <prefix> Generate changelog. Tags are filtered for <prefix>. | ||
-v, --verbose Print verbose log output. | ||
<pdsc> The pack description to generate the pack for. | ||
EOF | ||
} |
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