Skip to content

Commit

Permalink
Move the binaries instead of copying them
Browse files Browse the repository at this point in the history
  • Loading branch information
eapolinario committed Sep 26, 2023
1 parent 0ca961b commit 8a97a37
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions script/generate_config_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ OUTPUT_DIR="${ROOT_DIR}"/rsts/deployment/configuration/generated
GOBIN=${GOPATH:-~/go}/bin

make -C datacatalog compile
cp datacatalog/bin/datacatalog ${GOBIN}/datacatalog
mv datacatalog/bin/datacatalog ${GOBIN}/datacatalog
make -C flyteadmin compile
cp flyteadmin/bin/flyteadmin ${GOBIN}/flyteadmin
mv flyteadmin/bin/flyteadmin ${GOBIN}/flyteadmin
make -C flyteadmin compile_scheduler
cp flyteadmin/bin/flytescheduler ${GOBIN}/scheduler
mv flyteadmin/bin/flytescheduler ${GOBIN}/scheduler
make -C flytepropeller compile_flytepropeller
cp flytepropeller/bin/flytepropeller ${GOBIN}/flytepropeller
mv flytepropeller/bin/flytepropeller ${GOBIN}/flytepropeller

output_config () {
CONFIG_NAME=$1
Expand Down

0 comments on commit 8a97a37

Please sign in to comment.