Skip to content

Commit 924c117

Browse files
committed
fix: correct package names in support scripts
1 parent 07e2ece commit 924c117

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

bump.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ cd ${scriptdir}
1818
yarn install --frozen-lockfile
1919
if [[ "${LEGACY_BUMP:-}" == "" ]]; then
2020
# if we're using 'cdk-release' for the bump, build that package, including all of its dependencies
21-
npx lerna run build --include-dependencies --scope cdk-release
21+
npx lerna run build --include-dependencies --scope @aws-cdk/cdk-release
2222
fi
2323
${scriptdir}/scripts/bump.js ${1:-minor}

scripts/bump-cfnspec.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ ${pwd}/install.sh
1818
# dependency, not `@aws-cdk/cfnspec` itself).
1919
yarn lerna run build --stream \
2020
--scope=@aws-cdk/cfnspec \
21-
--scope=cfn2ts \
22-
--scope=ubergen \
21+
--scope=@aws-cdk/cfn2ts \
22+
--scope=@aws-cdk/ubergen \
2323
--include-dependencies
2424

2525
# Run the cfnspec update
@@ -30,4 +30,4 @@ version=$(cat cfn.version)
3030
# Come back to root, add all files to git and commit
3131
cd ${pwd}
3232
git add .
33-
git commit -a -m "feat: cloudformation spec v${version}" || true # don't fail if there are no updates
33+
git commit -a -m "feat: cloudformation spec v${version}" || true # don't fail if there are no updates

scripts/gen.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ fail() {
1515

1616
echo "============================================================================================="
1717
echo "building required build tools..."
18-
time lerna run --stream build --scope cfn2ts --scope ubergen --include-dependencies || fail
18+
time lerna run --stream build --scope @aws-cdk/cfn2ts --scope @aws-cdk/ubergen --include-dependencies || fail
1919

2020
echo "============================================================================================="
2121
echo "executing gen..."
22-
time lerna run --stream gen || fail
22+
time lerna run --stream gen || fail

0 commit comments

Comments
 (0)