mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-23 06:06:11 +00:00
9 lines
357 B
Bash
Executable File
9 lines
357 B
Bash
Executable File
#!/bin/sh
|
|
branch=`basename \`pwd\` | sed -e 's/[12]$//'`
|
|
echo Branch: $branch
|
|
branchMavenRepository=~/maven-repositories/$branch
|
|
echo Maven repository for branch: $branchMavenRepository
|
|
echo Copying all JAR files from Maven repository to branch server\s plugin directory...
|
|
find $branchMavenRepository -name '*.jar' -exec cp -v "{}" ./plugins \;
|
|
echo Done.
|