summary refs log blame commit diff
path: root/kokoro/build.sh
blob: 1d0acb9ed52dd94d53c4842472a09833da07de73 (plain) (tree)


















                                                                        
#!/bin/bash
# Copyright 2018 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.

set -ex

main() {
    if [ -z "${KOKORO_ARTIFACTS_DIR}" ]; then
        echo "This script must be run in kokoro"
        exit 1
    fi

    local src_root="${KOKORO_ARTIFACTS_DIR}"/git/crosvm

    return 0
}

main "$@"