mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-05-01 21:24:36 +00:00
The CI was failing due to two problems. 1. The `ci/static-checks.sh` was run from an incorrect place. 2. `rustfmt` was failing as some code wasn't correctly formatted. This patch address all the changed requested by rustfmt and the `static-checks.sh` script was updated Fixes: #83 Signed-off-by: Erich Cordoba <erich.cordoba.malibran@intel.com>
13 lines
173 B
Bash
Executable File
13 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2017-2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -e
|
|
|
|
cidir=$(dirname "$0")
|
|
source "${cidir}/lib.sh"
|
|
|
|
run_static_checks
|