Fix up some missed google-refine references

This commit is contained in:
Tom Morris 2013-03-25 16:05:48 -04:00
parent eab9c73a46
commit f6d94ecf38

15
refine
View File

@ -553,12 +553,12 @@ mac_dist() {
sync sync
hdiutil detach $DEVICE hdiutil detach $DEVICE
if [ -f "$REFINE_DIST_DIR/google-refine-$VERSION-$REVISION.dmg" ] ; then if [ -f "$REFINE_DIST_DIR/openrefine-$VERSION-$REVISION.dmg" ] ; then
rm "$REFINE_DIST_DIR/google-refine-$VERSION-$REVISION.dmg" rm "$REFINE_DIST_DIR/openrefine-$VERSION-$REVISION.dmg"
fi fi
hdiutil convert "$REFINE_BUILD_DIR/temp_refine.dmg" -format UDZO -imagekey zlib-level=9 -o "$REFINE_DIST_DIR/google-refine-$VERSION-$REVISION.dmg" || error "Error compressing DMG" hdiutil convert "$REFINE_BUILD_DIR/temp_refine.dmg" -format UDZO -imagekey zlib-level=9 -o "$REFINE_DIST_DIR/openrefine-$VERSION-$REVISION.dmg" || error "Error compressing DMG"
hdiutil internet-enable -yes "$REFINE_DIST_DIR/google-refine-$VERSION-$REVISION.dmg" || error "Error internet-enabling DMG" hdiutil internet-enable -yes "$REFINE_DIST_DIR/openrefine-$VERSION-$REVISION.dmg" || error "Error internet-enabling DMG"
rm -f "$REFINE_BUILD_DIR/temp_refine.dmg" rm -f "$REFINE_BUILD_DIR/temp_refine.dmg"
} }
@ -573,7 +573,7 @@ ui_test() {
windmill_prepare windmill_prepare
REFINE_DATA_DIR="${TMPDIR:=/tmp}/google-refine-tests" REFINE_DATA_DIR="${TMPDIR:=/tmp}/openrefine-tests"
add_option "-Drefine.headless=true" add_option "-Drefine.headless=true"
@ -636,7 +636,7 @@ run() {
fi fi
if [ ! -d $REFINE_CLASSES_DIR ] ; then if [ ! -d $REFINE_CLASSES_DIR ] ; then
IS_JAR=`ls $REFINE_LIB_DIR | grep google-refine` IS_JAR=`ls $REFINE_LIB_DIR | grep openrefine`
if [ -z "$IS_JAR" ] ; then if [ -z "$IS_JAR" ] ; then
ant build ant build
echo "" echo ""
@ -648,7 +648,7 @@ run() {
fi fi
if [ "$OS" = "macosx" ] ; then if [ "$OS" = "macosx" ] ; then
add_option '-Xdock:icon=graphics/icon/google-refine.icns' add_option '-Xdock:icon=graphics/icon/openrefine.icns'
fi fi
if [ "$REFINE_DATA_DIR" ] ; then if [ "$REFINE_DATA_DIR" ] ; then
@ -960,6 +960,7 @@ add_option "-Dpython.path=$JYTHONPATH"
add_option "-Dpython.cachedir=$HOME/.local/share/google/refine/cachedir" add_option "-Dpython.cachedir=$HOME/.local/share/google/refine/cachedir"
# ----- Respond to the action given -------------------------------------------- # ----- Respond to the action given --------------------------------------------
echo $ACTION
case "$ACTION" in case "$ACTION" in
build) build_prepare; ant build;; build) build_prepare; ant build;;