Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proposed fix for #257 and #284 - BR-CO-15 #292

Merged
merged 14 commits into from
Sep 22, 2021
Prev Previous commit
Next Next commit
Fixed typos
  • Loading branch information
phax committed Jul 31, 2021
commit 130a93bbe2ef532e10a67c26ac53560ce4f371d1
4 changes: 2 additions & 2 deletions update-xslt-and-validate.cmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off

rem preprocess first - catches errors quickers
rem preprocess first - catches errors quicker
call mvn -f pom-preprocess.xml generate-resources
if errorlevel 1 goto error

Expand All @@ -16,7 +16,7 @@ rem validate afterwards
call mvn -f pom-validate.xml validate
if errorlevel 1 goto error

echo Sucessfully done
echo Successfully done
goto end

:error
Expand Down
4 changes: 2 additions & 2 deletions update-xslt-and-validate.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

# preprocess first - catches errors quickers
# preprocess first - catches errors quicker
mvn -f pom-preprocess.xml generate-resources || exit 1

# convert to XSLT - takes forever
Expand All @@ -12,4 +12,4 @@ mvn -f pom-license.xml license:format || exit 1
# validate afterwards
mvn -f pom-validate.xml validate || exit 1

echo "Sucessfully done"
echo "Successfully done"