File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ _dist_include="pytest.ini poetry.lock poetry.toml pyproject.toml Makefile build/
4747# Create /dist/ sub-directory and copy files into directory
4848release : clean publish build-proxy
4949 mkdir -p dist
50- for f in $( _dist_include) ; do cp --parents - r $$ f dist; done
50+ for f in $( _dist_include) ; do cp -r $$ f dist; done
5151 cp ecs-proxies-deploy.yml dist/ecs-deploy-sandbox.yml
5252 cp ecs-proxies-deploy.yml dist/ecs-deploy-internal-qa-sandbox.yml
5353 cp ecs-proxies-deploy.yml dist/ecs-deploy-internal-dev-sandbox.yml
Original file line number Diff line number Diff line change @@ -56,12 +56,15 @@ steps:
5656 echo Apigee environment: $APIGEE_ENVIRONMENT
5757 echo pr_no: $pr_no
5858
59+ echo "Output dirs"
5960 ls
60- cd lambdas
61- ls
6261 cd id_sync
62+ echo "Output id_sync"
6363 ls
6464 cd ..
65+ cd shared
66+ echo "Output id_sync"
67+ ls
6568 cd ..
6669 cd terraform
6770
Original file line number Diff line number Diff line change 11# Define the directory containing the Docker image and calculate its SHA-256 hash for triggering redeployments
22locals {
3- shared_dir = abspath (" ${ path . root } /../lambdas/ shared" )
4- id_sync_lambda_dir = abspath (" ${ path . root } /../lambdas/ id_sync" )
3+ shared_dir = abspath (" ${ path . root } /../shared" )
4+ id_sync_lambda_dir = abspath (" ${ path . root } /../id_sync" )
55
66 # Get files from both directories
77 shared_files = fileset (local. shared_dir , " **" )
You can’t perform that action at this time.
0 commit comments