Ensuring that the plugins directory is in the same path as the jar

This commit is contained in:
Arpit Mohan 2019-09-17 18:02:58 +05:30
parent 352398da68
commit 6f4bfdd728

View File

@ -1,8 +1,11 @@
# Create the dist directory
mkdir -p dist/plugins
mkdir -p plugins
# Copy the server jar
cp ./appsmith-server/target/server-1.0-SNAPSHOT.jar dist/
cp ./appsmith-server/target/server-1.0-SNAPSHOT.jar ./
# Copy all the plugins
cp ./appsmith-plugins/*/target/*.jar dist/plugins/
cp ./appsmith-plugins/*/target/*.jar plugins/