There was an error while loading. Please reload this page.
1 parent dbb3d6d commit 8da60f1Copy full SHA for 8da60f1
1 file changed
scripts/setupdeps.sh
@@ -11,7 +11,11 @@ mkdir -p $DISTDIR/bin
11
cp -R ./node_modules/common-utils/plugins $(pwd)/dist/
12
13
# Copy action specific plugins to dist, if any
14
-cp -R ./plugins $(pwd)/dist/
+if [ -d "./plugins" ]; then
15
+ cp -R ./plugins $(pwd)/dist/
16
+else
17
+ echo "No action specific plugins found to be copied."
18
+fi
19
20
# Download and extract in a temporary directory
21
WORKINGDIR=$(mktemp -d -t rmc_build.XXXXXX)
0 commit comments