mirror of
https://github.com/taiki-e/install-action.git
synced 2025-12-27 01:54:13 -05:00
14 lines
387 B
Bash
Executable File
14 lines
387 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
set -CeEuo pipefail
|
|
IFS=$'\n\t'
|
|
trap -- 's=$?; printf >&2 "%s\n" "${0##*/}:${LINENO}: \`${BASH_COMMAND}\` exit with ${s}"; exit ${s}' ERR
|
|
cd -- "$(dirname -- "$0")"/..
|
|
|
|
# Update markdown
|
|
#
|
|
# USAGE:
|
|
# ./tools/update-markdown.sh
|
|
|
|
cargo run --manifest-path tools/codegen/Cargo.toml --bin generate-tools-markdown --release
|