*/
async syncDown() {
internals.debuglog('Pulling remote state');
+ await ensureDirectoryExists(this.postsDirectory);
await Remote.syncDown(this.remoteConfig, this.blogDirectory)
internals.debuglog('Pulled remote state');
}
*/
async syncUp() {
internals.debuglog('Pushing remote state');
+ await ensureDirectoryExists(this.postsDirectory);
await Remote.syncUp(this.remoteConfig, this.blogDirectory)
internals.debuglog('Pushed remote state');
}