daml/language-support/hs/bindings/export-package.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

31 lines
717 B
Bash
Executable File

#!/usr/bin/env nix-shell
#!nix-shell -i bash ../../../shell.nix
# Copyright (c) 2023 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
set -eou pipefail
if [ "$#" -ne 1 ]; then
echo "Expected exactly one argument."
echo "Usage: ${BASH_SOURCE[0]} TARGET_DIR"
exit 1
fi
TARGET_DIR=$(realpath $1)
cd "$(dirname ${BASH_SOURCE[0]})"
bazel build //ledger-api/grpc-definitions:all-ledger-api-haskellpb-sources
BAZEL_BIN=$(bazel info bazel-bin)
rm -rf gen
mkdir gen
mkdir gen/src
cp -rp $BAZEL_BIN/ledger-api/grpc-definitions/Google gen/src/Google
cp -rp $BAZEL_BIN/ledger-api/grpc-definitions/Com gen/src/Com
stack sdist --tar-dir $TARGET_DIR