Home | History | Annotate | Download | only in cros_pkg
      1 #!/bin/bash -u
      2 #
      3 # Copyright 2015 Google Inc. All Rights Reserved.
      4 #
      5 # This script is intended to be used by binary_search_state.py, as
      6 # part of the binary search triage on ChromeOS packages.  This script
      7 # generates the list of current ChromeOS packages, that is then used
      8 # for doing the binary search.
      9 #
     10 
     11 source common/common.sh
     12 
     13 cd ${GOOD_BUILD}/packages
     14 find . -name "*.tbz2"
     15 
     16 
     17