From 1f34f6ffaee985207c897d4fdb1e313e2cfd4c1c Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Wed, 17 Oct 2012 14:39:42 +0400 Subject: [PATCH] Generator output land in the right place now --- compiler/frontend/generator/TuplesAndFunctionsGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/frontend/generator/TuplesAndFunctionsGenerator.java b/compiler/frontend/generator/TuplesAndFunctionsGenerator.java index 3166c5ade67..59e7a3070ab 100644 --- a/compiler/frontend/generator/TuplesAndFunctionsGenerator.java +++ b/compiler/frontend/generator/TuplesAndFunctionsGenerator.java @@ -86,7 +86,7 @@ public class TuplesAndFunctionsGenerator { } public static void main(String[] args) throws FileNotFoundException { - File baseDir = new File("compiler/frontend/src/jet.src/"); + File baseDir = new File("compiler/frontend/src/jet/"); assert baseDir.exists() : "Base dir does not exist: " + baseDir.getAbsolutePath(); PrintStream tuples = new PrintStream(new File(baseDir, "Tuples.jet"));