Skip to content

Commit

Permalink
Fix: Build Error
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Aug 17, 2023
1 parent 73e07a4 commit 6c0742a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ failed_test=0
for pkg in $(find "${PACKAGES_PATH}" -name "*.zip"); do
if [[ ${pkg} =~ (fake_(bpy|bge)_modules_([a-z0-9\.]+)-(.*)).zip ]]; then
pkg_dir_name=${BASH_REMATCH[1]}
pkg_version=${BASH_REMATCH[3]}
pkg_version=${BASH_REMATCH[4]}
if ! check_pep440_compatible_version "${pkg_version}"; then
echo "Invalid package: '${pkg}'. File version '${pkg_version}' does not conform with PEP440."
((invalid_package+=1))
Expand Down

0 comments on commit 6c0742a

Please sign in to comment.