daml/security/update.sh
Gary Verhaegen d2e2c21684
update copyright headers (#12240)
New year, new copyright, new expected unknown issues with various files
that won't be covered by the script and/or will be but shouldn't change.

I'll do the details on Jan 1, but would appreciate this being
preapproved so I can actually get it merged by then.

CHANGELOG_BEGIN
CHANGELOG_END
2022-01-03 16:36:51 +00:00

30 lines
745 B
Bash
Executable File

#!/usr/bin/env bash
# Copyright (c) 2022 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