Skip to content

Commit 27625f4

Browse files
committed
Removed parents from cp
1 parent 9686b0d commit 27625f4

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
4848
release: 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

azure/templates/post-deploy.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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

terraform/id_sync_lambda.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Define the directory containing the Docker image and calculate its SHA-256 hash for triggering redeployments
22
locals {
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, "**")

0 commit comments

Comments
 (0)