summaryrefslogtreecommitdiffstats
path: root/sched/src/com/android/sched/util/codec/ZipOutputVFSCodec.java
diff options
context:
space:
mode:
Diffstat (limited to 'sched/src/com/android/sched/util/codec/ZipOutputVFSCodec.java')
-rw-r--r--sched/src/com/android/sched/util/codec/ZipOutputVFSCodec.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sched/src/com/android/sched/util/codec/ZipOutputVFSCodec.java b/sched/src/com/android/sched/util/codec/ZipOutputVFSCodec.java
index 162917e..b96a40e 100644
--- a/sched/src/com/android/sched/util/codec/ZipOutputVFSCodec.java
+++ b/sched/src/com/android/sched/util/codec/ZipOutputVFSCodec.java
@@ -54,8 +54,8 @@ public class ZipOutputVFSCodec extends OutputVFSCodec {
@Nonnull final String string) throws ParsingException {
RunnableHooks hooks = context.getRunnableHooks();
try {
- WriteZipFS vfs =
- new WriteZipFS(new OutputZipFile(string, hooks, existence, change));
+ WriteZipFS vfs = new WriteZipFS(
+ new OutputZipFile(context.getWorkingDirectory(), string, hooks, existence, change));
return new GenericOutputVFS(vfs);
} catch (IOException e) {
throw new ParsingException(e.getMessage(), e);