13 lines
245 B
Shell
Executable file
13 lines
245 B
Shell
Executable file
#!/bin/bash
|
|
|
|
DIR=$(realpath "$(dirname "${BASH_SOURCE[0]}")")
|
|
OUT="${DIR}/../packages/jobboerse/THIRDPARTY.toml"
|
|
RUN_DIR="${DIR}/../packages/jobboerse"
|
|
|
|
pushd "${RUN_DIR}"
|
|
|
|
cargo bundle-licenses \
|
|
--format toml \
|
|
--output "${OUT}"
|
|
|
|
popd
|