Skip to content

Commit 8da60f1

Browse files
committed
update setupdeps.sh
1 parent dbb3d6d commit 8da60f1

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

scripts/setupdeps.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ mkdir -p $DISTDIR/bin
1111
cp -R ./node_modules/common-utils/plugins $(pwd)/dist/
1212

1313
# Copy action specific plugins to dist, if any
14-
cp -R ./plugins $(pwd)/dist/
14+
if [ -d "./plugins" ]; then
15+
cp -R ./plugins $(pwd)/dist/
16+
else
17+
echo "No action specific plugins found to be copied."
18+
fi
1519

1620
# Download and extract in a temporary directory
1721
WORKINGDIR=$(mktemp -d -t rmc_build.XXXXXX)

0 commit comments

Comments
 (0)