diff options
author | Daniel Baumann <daniel@debian.org> | 2008-01-15 08:25:29 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2008-01-15 08:25:29 +0100 |
commit | 948730f93a1a767fafb46c31845864538359e33c (patch) | |
tree | 6d9332db2197bb7b54e3e3b97f83474cd2430e56 /helpers/lh_source_debian | |
parent | 3ea7ef688fb3018184444246d1786039e9e2f7e8 (diff) | |
download | vyos-live-build-948730f93a1a767fafb46c31845864538359e33c.tar.gz vyos-live-build-948730f93a1a767fafb46c31845864538359e33c.zip |
Consistently using the pipe as seperator in sed commands now.
Diffstat (limited to 'helpers/lh_source_debian')
-rwxr-xr-x | helpers/lh_source_debian | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/helpers/lh_source_debian b/helpers/lh_source_debian index d1d025c8f..5e7fc89a8 100755 --- a/helpers/lh_source_debian +++ b/helpers/lh_source_debian @@ -98,15 +98,15 @@ rm -f chroot/root/dpkg-selection.txt # Sort sources for DSC in chroot/*.dsc do - SOURCE="$(sed -n 's/^Source: //p' ${DSC})" + SOURCE="$(sed -n 's|^Source: ||p' ${DSC})" case "${SOURCE}" in lib?*) - LETTER="$(echo ${SOURCE} | sed 's/\(....\).*/\1/')" + LETTER="$(echo ${SOURCE} | sed 's|\(....\).*|\1|')" ;; *) - LETTER="$(echo ${SOURCE} | sed 's/\(.\).*/\1/')" + LETTER="$(echo ${SOURCE} | sed 's|\(.\).*|\1|')" ;; esac |