Skip to content

Commit

Permalink
Merge pull request #508 from conan-io/release/0.33.2
Browse files Browse the repository at this point in the history
Release 0.33.2
  • Loading branch information
czoido authored Jun 19, 2020
2 parents 1730e7c + 30b64a6 commit 68d1d5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cpt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

__version__ = '0.33.1'
__version__ = '0.33.2'
NEWEST_CONAN_SUPPORTED = "1.26.000"


Expand Down
9 changes: 4 additions & 5 deletions cpt/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,9 @@ def __init__(self, profile_abs_path, reference, conan_api, uploader,
self._profile_abs_path = profile_abs_path
self._reference = reference
self._exclude_vcvars_precommand = exclude_vcvars_precommand
self._build_policy = build_policy.split(",") if \
isinstance(build_policy, str) else \
build_policy
self._build_policy = self._build_policy or []
self._build_policy = build_policy.split(",") if \
isinstance(build_policy, str) else \
build_policy
self._runner = PrintRunner(runner or os.system, self.printer)
self._test_folder = test_folder
self._config_url = config_url
Expand Down Expand Up @@ -190,7 +189,7 @@ def __init__(self, profile_text, base_profile_text, base_profile_name, reference
self._upload_only_recipe = upload_only_recipe
self._reference = reference
self._conan_pip_package = conan_pip_package
self._build_policy = build_policy or []
self._build_policy = build_policy
self._docker_image = docker_image
self._always_update_conan_in_docker = always_update_conan_in_docker
self._docker_image_skip_update = docker_image_skip_update
Expand Down

0 comments on commit 68d1d5b

Please sign in to comment.