Skip to content

Commit 2ef8a6a

Browse files
committed
Corrected path to the file.
1 parent 99a4be3 commit 2ef8a6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/windows/print.publickey.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
COMMON_NAME = 'ImageMagick Studio LLC'
77

8-
package = [file for file in os.listdir('./packages') if file.endswith('.nupkg')][0]
8+
package = os.path.join('./packages', [file for file in os.listdir('./packages') if file.endswith('.nupkg')][0])
99

1010
with zipfile.ZipFile(package, 'r') as zip_ref:
1111
signature_data = zip_ref.read('.signature.p7s')

0 commit comments

Comments
 (0)