From 573c6e7ebdc71e0f6b87aa67689a9a961e9cfa58 Mon Sep 17 00:00:00 2001 From: "mkaply%us.ibm.com" Date: Mon, 27 Feb 2006 20:05:10 +0000 Subject: [PATCH] #328742 r=darin sort the files when we list them for packaging so that the manifest produces consistent results --- tools/update-packaging/common.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/update-packaging/common.sh b/tools/update-packaging/common.sh index 5807d6023116..2506292cb6c8 100755 --- a/tools/update-packaging/common.sh +++ b/tools/update-packaging/common.sh @@ -95,5 +95,6 @@ list_files() { find . -type f \ ! -name "channel-prefs.js" \ ! -name "update.manifest" \ - | sed 's/\.\/\(.*\)/"\1"/' + | sed 's/\.\/\(.*\)/"\1"/' \ + | sort }