9 lines
206 B
Bash
Executable File
9 lines
206 B
Bash
Executable File
# Create the dist directory
|
|
mkdir -p dist/plugins
|
|
|
|
# Copy the server jar
|
|
cp ./appsmith-server/target/server-1.0-SNAPSHOT.jar dist/
|
|
|
|
# Copy all the plugins
|
|
cp ./appsmith-plugins/*/target/*.jar dist/plugins/
|