We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25efe10 commit 7e85cfbCopy full SHA for 7e85cfb
tools/ci/check_validate.sh
@@ -38,7 +38,7 @@ function check_validation() {
38
for file in $(git diff --name-only develop | grep -E "samples/(.*\.py|.*\.json)")
39
do
40
LOG "[INFO] Found ${file} modified."
41
- model_path=$(dirname ${file})
+ model_path=$(echo "${file}" | sed 's|^samples/||')
42
MODIFIED_MODEL_PATHS[${#MODIFIED_MODEL_PATHS[@]}]=$model_path
43
done
44
MODIFIED_MODEL_PATHS=($(echo ${MODIFIED_MODEL_PATHS[@]} | tr ' ' '\n' | sort | uniq))
0 commit comments