daml/security/update.sh
Gary Verhaegen 151e12b81a
bump copyright (#16002)
This is the result of:

- Updating `./COPY` to say `2023`.
- Running `./dev-env/bin/dade-copyright-headers update .`
2023-01-04 18:21:15 +01:00

30 lines
745 B
Bash
Executable File

#!/usr/bin/env bash
# Copyright (c) 2023 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
set -euo pipefail
is_test=
while [[ $# -gt 0 ]]; do
case "$1" in
--test)
shift
is_test=1
;;
*)
echo "$0: unknown argument $1" >&2
exit 1
;;
esac
done
# These commands should be run at the root of the repo.
# We write backslash-colon instead of colon ro the grep does not pick up itself.
if [[ $is_test = 1 ]]; then
git grep --line-number TEST_EVIDENCE\: | bazel run security:evidence-security | diff security-evidence.md -
else
git grep --line-number TEST_EVIDENCE\: | bazel run security:evidence-security > security-evidence.md
fi