Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame^] | 1 | #!/usr/bin/env python |
2 | # -*- coding: utf-8 -*- | ||||
3 | import os | ||||
4 | |||||
5 | if os.getenv("APPVEYOR_REPO_TAG") != "true": | ||||
6 | print("Skip build step. It's not TAG") | ||||
7 | else: | ||||
8 | os.system("python conan/build.py") |