mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-11 06:01:46 +03:00
591f3ff94e
* Move application architecture guide * Changing titles etc * Reshuffling * More reshuffling of files and content * Refactoring iinto more sensible pages: * Getting most stuff into place * A ton of tidying up * Fixing things up * Tidying up * Address review comments * Fixes * Fix warnings etc * Update redirects * Try to add copyright header * Fix headers issue * Clarify DAML-LF relationship * Change I missed
12 lines
282 B
Bash
Executable File
12 lines
282 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
|
|
GRPC_DIR="${SCRIPT_DIR}/../../grpc-definitions"
|
|
DOC_FILE="${GRPC_DIR}/target/docs/proto-docs.rst"
|
|
|
|
pushd "${GRPC_DIR}"
|
|
./gen-docs.sh
|
|
cp "${DOC_FILE}" "${SCRIPT_DIR}/source/"
|
|
popd |