source: other-projects/mars-music-recommender/trunk/amc-music-scrape/RUN.sh@ 30419

Last change on this file since 30419 was 30419, checked in by davidb, 8 years ago

Support for JSON added

  • Property svn:executable set to *
File size: 321 bytes
Line 
1#!/bin/bash
2
3cygpath -h >/dev/null 2>&1
4if [ $? = "0" ] ; then
5 is_cygwin=1
6else
7 is_cygwin=0
8fi
9
10
11if [ $is_cygwin = "1" ] ; then
12 java -cp jars\\jsoup-1.8.3.jar\;jars\\json-simple-1.1.1.jar\;bin AMCArtistScrape
13else
14 java -cp jars/jsoup-1.8.3.jar:jars/json-simple-1.1.1.jar:bin AMCArtistScrape
15fi
16
17
Note: See TracBrowser for help on using the repository browser.