summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/package-build/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/package-build/build.py b/scripts/package-build/build.py
index 28e9db2a..2eceea93 100755
--- a/scripts/package-build/build.py
+++ b/scripts/package-build/build.py
@@ -93,7 +93,7 @@ def build_package(package: list, patch_dir: Path) -> None:
# Check out the specific commit
run(['git', 'checkout', package['commit_id']], cwd=repo_dir, check=True)
except CalledProcessError as e:
- print(f"❌ Failed to clone or checkout for package '{repo_name}': {e}")
+ print(f"Failed to clone or checkout for package '{repo_name}': {e}")
sys.exit(1)
try: