always sort by number which prepends the module
parent
46edde0bfc
commit
db9bbd864d
|
|
@ -456,7 +456,7 @@ union_append_bundles()
|
|||
debug_log "union_append_bundles" "$*"
|
||||
echo_green_star
|
||||
echo "Adding bundles to union"
|
||||
ls -1 "$1" | grep '.'$BEXT'$' | sort | while read BUNDLE; do
|
||||
ls -1 "$1" | grep '.'$BEXT'$' | sort -n | while read BUNDLE; do
|
||||
echo "* $BUNDLE"
|
||||
mkdir -p "$2/$BUNDLE"
|
||||
mount -o loop -t squashfs "$1/$BUNDLE" "$2/$BUNDLE"
|
||||
|
|
|
|||
Loading…
Reference in New Issue