20 lines
598 B
Bash
Executable File
20 lines
598 B
Bash
Executable File
#!/bin/bash
|
|
##===----------------------------------------------------------------------===##
|
|
##
|
|
## This source file is part of the Swift OpenTelemetry open source project
|
|
##
|
|
## Copyright (c) 2021 Moritz Lang and the Swift OpenTelemetry project authors
|
|
## Licensed under Apache License v2.0
|
|
##
|
|
## See LICENSE.txt for license information
|
|
##
|
|
## SPDX-License-Identifier: Apache-2.0
|
|
##
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
set -eu
|
|
here="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
bash $here/validate_license_headers.sh
|
|
bash $here/validate_format.sh
|