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

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

Switched order of stdout and stderr redirects

  • Property svn:executable set to *
File size: 265 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\;bin AMCArtistScrape
13else
14 java -cp jars/jsoup-1.8.3.jar:bin AMCArtistScrape
15fi
16
17
Note: See TracBrowser for help on using the repository browser.