Skip to content
Snippets Groups Projects
Commit 6bdbff2e authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Add simple shell script to build and deploy

parent 9f069e90
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
### exit on any error
set -e
cd $(dirname $0)/..
### build
mvn
### deploy
find /opt/Fiji.app/plugins/ -name 'NoiSee-*.jar' | xargs --no-run-if-empty rm -v
cp -v $(find target -iname '*.jar' -and -not -iname '*-sources.jar') /opt/Fiji.app/plugins/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment