We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 921c52c commit 3963bd1Copy full SHA for 3963bd1
src/gitpuller.ts
@@ -103,10 +103,12 @@ export abstract class GitPuller {
103
path: PathExt.dirname(directory)
104
};
105
// 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
- });
+ await this._contents
+ .get(directory, { content: false })
+ .catch(async () => {
+ const newDirectory = await this._contents.newUntitled(options);
110
+ await this._contents.rename(newDirectory.path, directory);
111
+ });
112
}
113
114
0 commit comments