diff --git a/chroot_version_hooks.d/11_rm_bad_directory b/chroot_version_hooks.d/11_rm_bad_directory new file mode 100644 index 0000000000..1ac1fce8d2 --- /dev/null +++ b/chroot_version_hooks.d/11_rm_bad_directory @@ -0,0 +1,8 @@ +# 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. + +# Delete /does/not/exist to fix metrics unit test, which depends on this +# directory not existing. +sudo rm -rf /does/not/exist +exit 0