Guest User

Untitled

a guest
Nov 24th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. #!/bin/sh
  2. rm -rf plugins
  3. rm -rf features
  4. rm artifacts.jar
  5. rm content.jar
  6.  
  7. files=`ls`
  8. path=`pwd`
  9.  
  10. for file in $files; do
  11. if [ -d $file ];then
  12. echo $file
  13. $1/eclipse -application org.eclipse.equinox.p2.publisher.FeaturesAndBundlesPublisher -nosplash --launcherSuppressErrors -metadataRepository file://$path -artifactRepository file://$path -source ./$file -compress -append -publishArtifacts
  14. fi
  15. done
Add Comment
Please, Sign In to add comment