mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
26 lines
815 B
Bash
26 lines
815 B
Bash
|
#!/usr/bin/env bash
|
||
|
# Copyright (c) 2020 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
set -eou pipefail
|
||
|
|
||
|
cd "$(dirname "$0")/.."
|
||
|
|
||
|
eval "$(./dev-env/bin/dade-assist)"
|
||
|
|
||
|
# We allow overwriting this since on CI we build this in a separate step and upload it first
|
||
|
# before fetching it in another step.
|
||
|
HEAD_TARGET_DIR=${1:-compatibility/head_sdk}
|
||
|
|
||
|
function cleanup {
|
||
|
rm -rf "daml-types-0.0.0.tar.gz" "daml-ledger-0.0.0.tar.gz" "daml-react-0.0.0.tar.gz"
|
||
|
}
|
||
|
|
||
|
trap cleanup EXIT
|
||
|
|
||
|
bazel run //language-support/ts/daml-types:npm_package.pack
|
||
|
bazel run //language-support/ts/daml-ledger:npm_package.pack
|
||
|
bazel run //language-support/ts/daml-react:npm_package.pack
|
||
|
|
||
|
cp -f daml-types-0.0.0.tgz daml-react-0.0.0.tgz daml-ledger-0.0.0.tgz "$HEAD_TARGET_DIR"
|