Skip to content

Commit 8cba2b1

Browse files
author
Yuriy Bezsonov
committed
fix(java-on-aws-infra): correct relative paths in immersion day scripts
1 parent a99b215 commit 8cba2b1

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

infra/scripts/deploy/java-on-aws-immersion-day/1-containerize.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Source common utilities
88
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
9-
source "$SCRIPT_DIR/../lib/common.sh"
9+
source "$SCRIPT_DIR/../../lib/common.sh"
1010

1111
# Source environment variables
1212
source /etc/profile.d/workshop.sh

infra/scripts/deploy/java-on-aws-immersion-day/2-eks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# Source common utilities
77
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
8-
source "$SCRIPT_DIR/../lib/common.sh"
8+
source "$SCRIPT_DIR/../../lib/common.sh"
99

1010
# Source environment variables
1111
source /etc/profile.d/workshop.sh

infra/scripts/deploy/java-on-aws-immersion-day/3-ecs-express.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Source common utilities
88
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
9-
source "$SCRIPT_DIR/../lib/common.sh"
9+
source "$SCRIPT_DIR/../../lib/common.sh"
1010

1111
# Source environment variables
1212
source /etc/profile.d/workshop.sh

infra/scripts/deploy/java-on-aws-immersion-day/4-test-optimizations.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# ./test-optimizations.sh --only cds --deploy # Build, push, deploy single method
1111

1212
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
13-
source "${SCRIPT_DIR}/../lib/common.sh"
13+
source "${SCRIPT_DIR}/../../lib/common.sh"
1414

1515
REPO_ROOT="$(cd "${SCRIPT_DIR}/../../.." && pwd)"
1616
APP_DIR="${REPO_ROOT}/apps/unicorn-store-spring"

infra/scripts/deploy/java-on-aws-immersion-day/ecs-classic.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Source common utilities
88
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
9-
source "$SCRIPT_DIR/../lib/common.sh"
9+
source "$SCRIPT_DIR/../../lib/common.sh"
1010

1111
# Source environment variables
1212
source /etc/profile.d/workshop.sh

infra/scripts/deploy/java-on-aws-immersion-day/extract-dockerfiles.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Run this script periodically to sync Dockerfiles with content changes
44

55
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
6-
source "${SCRIPT_DIR}/../lib/common.sh"
6+
source "${SCRIPT_DIR}/../../lib/common.sh"
77

88
REPO_ROOT="$(cd "${SCRIPT_DIR}/../../.." && pwd)"
99
CONTENT_DIR="${REPO_ROOT}/../java-on-amazon-eks/content"

0 commit comments

Comments
 (0)