Skip to content

Commit 3963bd1

Browse files
committed
Fix prettier
1 parent 921c52c commit 3963bd1

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/gitpuller.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,12 @@ export abstract class GitPuller {
103103
path: PathExt.dirname(directory)
104104
};
105105
// Create directory if it does not exist.
106-
await this._contents.get(directory, { content: false }).catch(async () => {
107-
const newDirectory = await this._contents.newUntitled(options);
108-
await this._contents.rename(newDirectory.path, directory);
109-
});
106+
await this._contents
107+
.get(directory, { content: false })
108+
.catch(async () => {
109+
const newDirectory = await this._contents.newUntitled(options);
110+
await this._contents.rename(newDirectory.path, directory);
111+
});
110112
}
111113
}
112114

0 commit comments

Comments
 (0)