Skip to content

Commit 0aaf414

Browse files
committed
Fix file list
1 parent 2accb3f commit 0aaf414

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/com.google.cloud.tools.eclipse.integration.appengine/src/com/google/cloud/tools/eclipse/integration/appengine/DebugNativeAppEngineStandardProjectTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public void run() {
131131
Files.walkFileTree(deployDir, new SimpleFileVisitor<Path>() {
132132
@Override
133133
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
134-
System.out.println(">> " + file.relativize(deployDir));
134+
System.out.println(">> " + file);
135135
return FileVisitResult.CONTINUE;
136136
}
137137
});

0 commit comments

Comments
 (0)