diff options
author | Adin Scannell <ascannell@google.com> | 2019-09-11 21:49:18 -0700 |
---|---|---|
committer | Adin Scannell <ascannell@google.com> | 2019-09-11 22:13:26 -0700 |
commit | 96a25e080c2b2e10e0d92b544f5830f85f8540e0 (patch) | |
tree | bfabfc9989770839cde422c75e15e8c85e0c8925 /scripts | |
parent | 1e6bdd58551246f6ae662a20b733a9c9dd5ef225 (diff) |
Ensure appropriate tools are installed on image.
PiperOrigin-RevId: 268608466
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index 81023aab3..1d2d2a6d6 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -16,6 +16,9 @@ source $(dirname $0)/common.sh +# Install required packages for make_repository.sh et al. +sudo apt-get update && sudo apt-get install -y dpkg-sig coreutils gpg apt-utils + # Build runsc. runsc=$(build -c opt //runsc) |