build: fix STAGING_DIR cleaning when filenames contain spaces
authorJeffery To <jeffery.to@gmail.com>
Wed, 15 May 2019 14:20:17 +0000 (22:20 +0800)
committerPetr Štetiar <ynezz@true.cz>
Fri, 17 May 2019 19:41:43 +0000 (21:41 +0200)
When looping through a package's STAGING_FILES_LIST (a list of
file/directory paths delimited by newlines), if the path contains
spaces, then the path will be split by the while loops, and the
file/directory will not be deleted/removed.

This sets the internal field separator to the newline only so that the
entire path is considered when deleting/removing.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
scripts/clean-package.sh

index e580566a528e0d613f22830012f0801979e13ba1..6dd9bf730686f4889f319834d19fe2bf7bd3b9b1 100755 (executable)
@@ -1,4 +1,5 @@
 #!/usr/bin/env bash
+IFS=$'\n'
 [ -n "$1" -a -n "$2" ] || {
        echo "Usage: $0 <file> <directory>"
        exit 1