Skip to content

Commit

Permalink
Don't include debug echo.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanlovett committed Oct 3, 2023
1 parent 77d598a commit f253795
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/infra-packages/sync.bash
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ ROOT_DIR="${SCRIPT_DIR}/../.."

# install file in deployment directories named "image"
find "${ROOT_DIR}/deployments" -type d -name 'image' \
-exec echo cp "${SCRIPT_DIR}/requirements.txt" {}/infra-requirements.txt \;
-exec cp "${SCRIPT_DIR}/requirements.txt" {}/infra-requirements.txt \;

# install file in subdirectories of deployment directories named "images"
for d in $(find "${ROOT_DIR}/deployments" -type d -name images); do
find $d -not -name images -maxdepth 1 -type d \
-exec echo cp "${SCRIPT_DIR}/requirements.txt" {}/infra-requirements.txt \;
-exec cp "${SCRIPT_DIR}/requirements.txt" {}/infra-requirements.txt \;
done

0 comments on commit f253795

Please sign in to comment.