Merge commit 'f5e4ccf53b1d3c97904590815fc892ddd0ce91bb'
Build / build (push) Failing after 15s

This commit is contained in:
2026-05-25 14:15:21 -05:00
531 changed files with 2501 additions and 2111 deletions
+4 -4
View File
@@ -1,7 +1,7 @@
#! /usr/bin/env python3
#
# Copyright 2016 - 2023 gary@drinkingtea.net
# Copyright 2016 - 2026 gary@drinkingtea.net
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -21,11 +21,11 @@ def run(args: list[str]):
if subprocess.run(args).returncode != 0:
sys.exit(1)
# get current build type
# get the current build type
with open(".current_build", "r") as f:
current_build = f.readlines()[0]
if current_build[len(current_build) - 1] == '\n':
current_build = current_build[:len(current_build) - 1]
if current_build[-1] == '\n':
current_build = current_build[:-1]
project_dir = sys.argv[1]
project_name = sys.argv[2]