Skip to content

Commit d8c069d

Browse files
committed
[fix] : Fixed escape sequence
1 parent 3e9732c commit d8c069d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@ make_customize_airootfs() {
666666
# Create script
667667
for _script in "${_script_list[@]}"; do
668668
if [[ -f "${_script}" ]]; then
669-
echo -e "\n$(cat "${_script}")" >> "${airootfs_dir}/${_main_script}"
669+
(echo && cat "${_script}") >> "${airootfs_dir}/${_main_script}"
670670
remove "${_script}"
671671
else
672672
msg_debug "${_script} was not found."

0 commit comments

Comments
 (0)