Skip to content

Commit 95357ba

Browse files
committed
Fix newline written to private key
1 parent ea42287 commit 95357ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-executable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ jobs:
251251
shell: bash
252252
run: |
253253
source .venv/Scripts/activate
254-
echo "$PRIVATE_SIGNING_KEY" > keys/private.key
254+
echo -n "$PRIVATE_SIGNING_KEY" > keys/private.key
255255
python launch.py --sign-executable "dist/MouseTracks.exe"
256256
python launch.py --sign-executable "dist/${FULL_EXE_NAME}"
257257
rm keys/private.key

0 commit comments

Comments
 (0)