Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit d0fcf9a2 authored by Robert Nelson's avatar Robert Nelson
Browse files

scripts: debootstrap.sh: replace tab via ,


Signed-off-by: default avatarRobert Nelson <robertcnelson@gmail.com>
parent e3a60028
No related merge requests found
......@@ -36,17 +36,17 @@ check_defines () {
fi
if [ "${deb_include}" ] ; then
include=$(echo ${deb_include} | sed 's/ /,/g')
include=$(echo ${deb_include} | sed 's/ /,/g' | sed 's/\t/,/g')
options="${options} --include=${include}"
fi
if [ "${deb_exclude}" ] ; then
exclude=$(echo ${deb_exclude} | sed 's/ /,/g')
exclude=$(echo ${deb_exclude} | sed 's/ /,/g' | sed 's/\t/,/g')
options="${options} --exclude=${exclude}"
fi
if [ "${deb_components}" ] ; then
components=$(echo ${deb_components} | sed 's/ /,/g')
components=$(echo ${deb_components} | sed 's/ /,/g' | sed 's/\t/,/g')
options="${options} --components=${components}"
fi
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment