Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.

Commit ff51453

Browse files
committed
Fix up arguments to sed call in packed cc-runtime workflow
1 parent a4baa8c commit ff51453

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
set -e
1919
cat assembly.h int_endianness.h int_types.h int_lib.h int_util.h *.c > /tmp/cc-runtime.c
2020
for f in *.inc; do
21-
sed -i "/#include \"$f\"/{r $f;d}" /tmp/cc-runtime.c
21+
sed -i -e "/#include \"$f\"/{r $f" -e "d}" /tmp/cc-runtime.c
2222
done
2323
grep '#include <' /tmp/cc-runtime.c > /tmp/saved-includes
2424
sed -i '/#include/d' /tmp/cc-runtime.c

0 commit comments

Comments
 (0)