diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-06-10 03:22:17 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-06-10 03:22:17 +0000 |
commit | 619c0aaa274c8c3ff128b1a16ad0ca56b2e118e8 (patch) | |
tree | 5029f5de1a76731814ac0ded3e066652aa606bad /bin | |
parent | Updating. (diff) | |
download | progress-linux-tools-619c0aaa274c8c3ff128b1a16ad0ca56b2e118e8.tar.xz progress-linux-tools-619c0aaa274c8c3ff128b1a16ad0ca56b2e118e8.zip |
Updating.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/pbuild.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/pbuild.sh b/bin/pbuild.sh index f329c2a..3e0c5ab 100755 --- a/bin/pbuild.sh +++ b/bin/pbuild.sh @@ -231,7 +231,7 @@ do # upload case "${UPLOAD}" in true) - FILES="$(sed -e '1,/^Files:$/ d' ${TARGET}_${SOURCE_VERSION}*.dsc | awk '/^ / { print $5 }')" + FILES="$(sed -e '1,/^Files:$/ d' ${TARGET}_${SOURCE_VERSION}*.dsc | grep -v '^\ \ ' | grep '^\ ' | awk '/^ / { print $3 }')" for FILE in ${FILES} do @@ -342,7 +342,7 @@ do # upload case "${UPLOAD}" in true) - FILES="$(sed -e '1,/^Files:$/ d' ${TARGET}_${SOURCE_VERSION}_*.changes | awk '/^ / { print $5 }')" + FILES="$(sed -e '1,/^Files:$/ d' ${TARGET}_${SOURCE_VERSION}_*.changes | grep -v '^\ \ ' | grep '^\ ' | awk '/^ / { print $5 }')" for FILE in ${FILES} do |