Skip to content

Commit

Permalink
chore: fix variable name in release scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Aug 25, 2023
1 parent 9013f88 commit adb6ec6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/release-rc.sh
Expand Up @@ -10,7 +10,7 @@ pnpm build

# Release packages
for PKG in packages/* ; do
if [[ $p == "packages/nuxi" ]] ; then
if [[ $PKG == "packages/nuxi" ]] ; then
continue
fi
pushd $PKG
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.sh
Expand Up @@ -10,7 +10,7 @@ pnpm build

# Release packages
for PKG in packages/* ; do
if [[ $p == "packages/nuxi" ]] ; then
if [[ $PKG == "packages/nuxi" ]] ; then
continue
fi
pushd $PKG
Expand Down

0 comments on commit adb6ec6

Please sign in to comment.