Skip to content

Commit 3de952d

Browse files
committed
Fix embedding of magic bytes
Screw you once again, printf!
1 parent f5426ce commit 3de952d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/build-runtime.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ if(APPIMAGEKIT_EMBED_MAGIC_BYTES)
127127
add_custom_command(
128128
TARGET runtime
129129
POST_BUILD
130-
COMMAND printf '\\x41\\x49\\x02' | dd of=runtime bs=1 seek=8 count=3 conv=notrunc
130+
COMMAND echo -en '\\x41\\x49\\x02' | dd of=runtime bs=1 seek=8 count=3 conv=notrunc
131131
)
132132
endif()
133133

0 commit comments

Comments
 (0)