mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-08 19:23:28 +02:00
Merge pull request #15500 from mattr1x/add-ci-build-envvar
Enable `--ci-build` setting via an environment variable
This commit is contained in:
commit
c9f9a924d4
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ def parse_args():
|
|||
parser.add_argument('--vcpkg-root', type=str, help='The location of the vcpkg distribution')
|
||||
parser.add_argument('--build-root', required=True, type=str, help='The location of the cmake build')
|
||||
parser.add_argument('--ports-path', type=str, default=defaultPortsPath)
|
||||
parser.add_argument('--ci-build', action='store_true')
|
||||
parser.add_argument('--ci-build', action='store_true', default=os.getenv('CI_BUILD') is not None)
|
||||
if True:
|
||||
args = parser.parse_args()
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue