Skip to content

Commit

Permalink
fixed build pipline. error: logger log lvl set in an outdated way, ma…
Browse files Browse the repository at this point in the history
…nge.sh moved -v flag to create_package.py
  • Loading branch information
lyon040502003 committed Jun 21, 2024
1 parent 04227dd commit 8a568cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion create_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,8 @@ def main(
"""
logging.basicConfig(level=logging.INFO)
log = logging.getLogger("create_package", level=logging.INFO)
log = logging.getLogger("create_package")
log.setLevel(logging.INFO)

log.info("Start creating package")

Expand Down
4 changes: 2 additions & 2 deletions tools/manage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ run_codespell () {

build () {
echo -e "${BIGreen}>>>${RST} Building the addon ..."
python ./create_package.py -v
python ./create_package.py

}

Expand Down Expand Up @@ -230,4 +230,4 @@ main () {

return_code=0
main "$@" || return_code=$?
exit $return_code
exit $return_code

0 comments on commit 8a568cd

Please sign in to comment.