Skip to content

Commit 6861513

Browse files
committed
chore: wip
1 parent 4a4eddb commit 6861513

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

storage/framework/scripts/publish

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ script_dir=$(realpath $(dirname "$0"))
66
# Get all directories in the core path except for src/bun-create
77
dirs=$(find "$script_dir/../core" -type d -maxdepth 1 -not -path "$script_dir/../bun-create")
88

9-
# Add the `core/components/stepper` directory to dirs, until we can release all ./components/*
10-
dirs="$dirs $script_dir/../core/components/stepper"
11-
129
# Check if no directories found
1310
if [ -z "$dirs" ]; then
1411
echo "No core packages found"
@@ -24,7 +21,7 @@ for dir in $dirs; do
2421
# Change to the directory
2522
cd $dir
2623

27-
bun publish --access public || echo "Failed to publish $dir"
24+
bun publish --access public || echo "Failed to publish $dir" && exit 1
2825

2926
# Check if the build command was successful
3027
if [ $? -ne 0 ]; then

0 commit comments

Comments
 (0)