Skip to content

Commit 7735638

Browse files
committed
Fix python import path in chelon-sign
1 parent cf5b010 commit 7735638

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

chelon.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Name: chelon
22
Version: 1.0.0
3-
Release: 4%{?dist}
3+
Release: 5%{?dist}
44
Summary: Remote GPG package signing service
55

66
License: GPL-2.0-or-later
@@ -136,6 +136,9 @@ fi
136136
%{_datadir}/%{name}/client/
137137

138138
%changelog
139+
* Thu Jan 08 2026 Atomicorp <support@atomicorp.com> - 1.0.0-5
140+
- Fix python import path for client library in chelon-sign
141+
139142
* Thu Jan 08 2026 Atomicorp <support@atomicorp.com> - 1.0.0-4
140143
- Support dynamic key names in chelon-sign (removed hardcoded Key IDs)
141144
- Added --key-name alias for --key-type

tools/chelon-sign

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ from typing import Optional, List
2121

2222
# Add tools directory to path
2323
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
24+
# Add standard install path
25+
sys.path.append('/usr/share/chelon/client')
2426

2527
try:
2628
from chelon_client import get_client, ChelonClientError

0 commit comments

Comments
 (0)