Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/bin/bash | |
| 2 | |
| 3 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. | |
| 4 # Use of this source code is governed by a BSD-style license that can be | |
| 5 # found in the LICENSE file. | |
| 6 | |
| 7 # Files/directories that should never be present in a clean, | |
| 8 # standard release build. | |
| 9 RELEASE_FILE_BLACKLIST=( | |
|
gauravsh
2011/01/28 01:27:04
also, it might be nice if you could add comments o
| |
| 10 /root/.dev_mode | |
| 11 /opt/google/chrome/localaccount | |
| 12 /home/.shadow | |
| 13 ) | |
|
gauravsh
2011/01/28 01:27:04
Another blacklist (fine to do it in a separate CL)
| |
| OLD | NEW |