diff options
author | Daniil Baturin <daniil@baturin.org> | 2025-06-09 12:49:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-09 12:49:06 +0100 |
commit | faa725ae123ec4f153ed99e7e8d6d222c663a898 (patch) | |
tree | 33e45b80c19160b841ae4bab02f971b5a3581c08 /scripts/package-build/linux-kernel/build.py | |
parent | 6b33a64184a481d16710fb0b05b97184a0e70b21 (diff) | |
download | vyos-build-faa725ae123ec4f153ed99e7e8d6d222c663a898.tar.gz vyos-build-faa725ae123ec4f153ed99e7e8d6d222c663a898.zip |
Remove an emoji from an error message
Diffstat (limited to 'scripts/package-build/linux-kernel/build.py')
-rwxr-xr-x | scripts/package-build/linux-kernel/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/package-build/linux-kernel/build.py b/scripts/package-build/linux-kernel/build.py index 46a60fd7..27840a4e 100755 --- a/scripts/package-build/linux-kernel/build.py +++ b/scripts/package-build/linux-kernel/build.py @@ -65,7 +65,7 @@ def clone_or_update_repo(repo_dir: Path, scm_url: str, commit_id: str) -> None: run(['git', 'clone', scm_url, str(repo_dir)], check=True) run(['git', 'checkout', commit_id], cwd=repo_dir, check=True) except CalledProcessError as e: - print(f"❌ Failed to clone or checkout: {e}") + print(f"Failed to clone or checkout: {e}") sys.exit(1) |