Skip to content

Commit

Permalink
Fix rel path from XSLT transform source issue, fix #1603. (#1604)
Browse files Browse the repository at this point in the history
  • Loading branch information
aj-stein-nist committed Jul 10, 2023
1 parent a5cfabd commit 9546175
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/ci-cd/validate-content.sh
Expand Up @@ -108,7 +108,7 @@ if [ -z "${SCRATCH_DIR+x}" ]; then
fi
fi

profile_schematron="oscal/src/utils/schematron/oscal-profile.sch"
profile_schematron="${OSCAL_DIR}/src/utils/schematron/oscal-profile.sch"
compiled_profile_schematron="${SCRATCH_DIR}/oscal-profile.xsl"
build_schematron "${profile_schematron}" "${compiled_profile_schematron}"

Expand Down Expand Up @@ -154,7 +154,7 @@ while IFS="|" read path format model converttoformats || [ -n "$path" ]; do
echo -e "${P_INFO}Validating profile with Schematron for project's requirements and recommendations.${P_INFO}${P_END}"
target_file=$(basename -- "${file_relative}")
svrl_result="/tmp/${target_file}.svrl"
result=$(validate_with_schematron "${SCRATCH_DIR}/oscal-profile.xsl" "${file_relative}" "$svrl_result" 2>&1)
result=$(validate_with_schematron "${SCRATCH_DIR}/oscal-profile.xsl" "${file}" "$svrl_result" 2>&1)
cmd_exitcode=$?
if [ $cmd_exitcode -ne 0 ]; then
echo -e "${P_ERROR}Profile validation execution for '${P_END}${file_relative}${P_ERROR}' with Schematron '${P_END}${profile_schematron}${P_ERROR}' did not complete.${P_END}"
Expand Down

0 comments on commit 9546175

Please sign in to comment.