testmaps: ignore trailing space in .json diff (line ending differences)
This commit is contained in:
parent
ca7002cb38
commit
1ce3702e32
|
|
@ -68,7 +68,7 @@ for bsp in ${COMMIT_JSON_MAPS}; do
|
||||||
cp ${bsp}.json reference_bsp_json/${bsp}.json
|
cp ${bsp}.json reference_bsp_json/${bsp}.json
|
||||||
else
|
else
|
||||||
echo "Diff of reference_bsp_json/${bsp}.json and ${bsp}.json:"
|
echo "Diff of reference_bsp_json/${bsp}.json and ${bsp}.json:"
|
||||||
diff -U3 reference_bsp_json/${bsp}.json ${bsp}.json || exit 1
|
diff -U3 --ignore-trailing-space reference_bsp_json/${bsp}.json ${bsp}.json || exit 1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue