Chromium Code Reviews| Index: scripts/image_signing/ensure_no_nonrelease_files.config |
| diff --git a/scripts/image_signing/ensure_no_nonrelease_files.config b/scripts/image_signing/ensure_no_nonrelease_files.config |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..32a8a7237cf059e2018cff6e06e9bf2ab19ac4a0 |
| --- /dev/null |
| +++ b/scripts/image_signing/ensure_no_nonrelease_files.config |
| @@ -0,0 +1,13 @@ |
| +#!/bin/bash |
| + |
| +# Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +# Files/directories that should never be present in a clean, |
| +# standard release build. |
| +RELEASE_FILE_BLACKLIST=( |
|
gauravsh
2011/01/28 01:27:04
also, it might be nice if you could add comments o
|
| +/root/.dev_mode |
| +/opt/google/chrome/localaccount |
| +/home/.shadow |
| +) |
|
gauravsh
2011/01/28 01:27:04
Another blacklist (fine to do it in a separate CL)
|