Skip to content

Instantly share code, notes, and snippets.

@kkung
Created March 10, 2012 04:09
Show Gist options
  • Save kkung/2010081 to your computer and use it in GitHub Desktop.
Save kkung/2010081 to your computer and use it in GitHub Desktop.
From 5716934cfb7af110c80c3f685c01aba8a0d4767d Mon Sep 17 00:00:00 2001
From: kkung <[email protected]>
Date: Sat, 10 Mar 2012 13:08:11 +0900
Subject: [PATCH] fix path issue
---
build.xml | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/build.xml b/build.xml
index 56daf91..576ad05 100644
--- a/build.xml
+++ b/build.xml
@@ -9,7 +9,7 @@
<property name="build" location="build" />
<property name="dist" location="dist" />
<property name="test" location="test" />
- <property name="test.src" location="${test}/src" />
+ <property name="test.src" location="${test}/veeju" />
<property name="test.ast" location="${test}/ast" />
<property name="test.dst" location="${build}/test" />
<property name="doc" location="doc" />
--
1.7.4.4
From 7ab0f55a616bb0177d6875d59290327d66d520e9 Mon Sep 17 00:00:00 2001
From: kkung <[email protected]>
Date: Sat, 10 Mar 2012 13:10:21 +0900
Subject: [PATCH 2/2] fix path issue
---
build.xml | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/build.xml b/build.xml
index 576ad05..cda6062 100644
--- a/build.xml
+++ b/build.xml
@@ -10,6 +10,7 @@
<property name="dist" location="dist" />
<property name="test" location="test" />
<property name="test.src" location="${test}/veeju" />
+ <property name="test.veeju" location="${test}/src" />
<property name="test.ast" location="${test}/ast" />
<property name="test.dst" location="${build}/test" />
<property name="doc" location="doc" />
@@ -93,7 +94,7 @@ value="http://repo2.maven.org/maven2/org/yaml/snakeyaml/1.7/snakeyaml-1.7.jar"/>
description="Run parser tests.">
<java classname="veeju.tests.parser.ParserTest"
failonerror="true">
- <arg value="${test.src}" />
+ <arg value="${test.veeju}" />
<arg value="${test.ast}" />
<classpath>
<pathelement location="${test}" />
--
1.7.4.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment