File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
storage/framework/scripts Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,6 @@ script_dir=$(realpath $(dirname "$0"))
6
6
# Get all directories in the core path except for src/bun-create
7
7
dirs=$( find " $script_dir /../core" -type d -maxdepth 1 -not -path " $script_dir /../bun-create" )
8
8
9
- # Add the `core/components/stepper` directory to dirs, until we can release all ./components/*
10
- dirs=" $dirs $script_dir /../core/components/stepper"
11
-
12
9
# Check if no directories found
13
10
if [ -z " $dirs " ]; then
14
11
echo " No core packages found"
@@ -24,7 +21,7 @@ for dir in $dirs; do
24
21
# Change to the directory
25
22
cd $dir
26
23
27
- bun publish --access public || echo " Failed to publish $dir "
24
+ bun publish --access public || echo " Failed to publish $dir " && exit 1
28
25
29
26
# Check if the build command was successful
30
27
if [ $? -ne 0 ]; then
You can’t perform that action at this time.
0 commit comments