Skip to content

Commit 84eba17

Browse files
committed
Fix: Bash paths
1 parent 48bab6e commit 84eba17

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ source package-order.sh
66
# Loop over the directories and run the build command
77
for dir in "${DIRS[@]}"; do
88
# Change to the directory
9-
if ! cd "packages/$dir"; then
9+
if ! cd "$dir"; then
1010
echo "Error: Unable to change to directory: packages/$dir"
1111
exit 1
1212
fi

package-order.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
# Define the order of the directories to process
44
DIRS=(
5-
"utils"
6-
"providers"
7-
"attributes"
8-
"drops"
9-
"moments"
5+
"packages/utils"
6+
"packages/providers"
7+
"packages/attributes"
8+
"packages/drops"
9+
"packages/moments"
1010
)

publish-update-packages.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
source package-order.sh
33

44
# Loop through each package directory
5-
for dir in "${DIRS[@]}"; do
5+
for pkg in "${DIRS[@]}"; do
66
pkg_name=$(jq -r '.name' $pkg/package.json)
77
current_version=$(jq -r '.version' $pkg/package.json)
88
remote_version=$(npm view $pkg_name version 2>/dev/null)

0 commit comments

Comments
 (0)