• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/env bash
2# Copyright 2025 The ChromiumOS Authors
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5set -ex
6
7$(dirname $0)/deps/install-x86_64-debs
8$(dirname $0)/deps/install-x86_64-other
9
10Red='\033[0;31m'
11Reset='\033[0m'
12# Check if submodules were initialized. If a submodule is not initialized, git
13# submodule status will be prefixed with `-`
14if git submodule status | grep '^-'; then
15    echo >&2 -e "${Red}ERROR${Reset}: Git modules were not initialized. Run 'git submodule update --init' to initialize them."
16fi
17