Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
chore: move util/gitfs/fs
  • Loading branch information
rarkins committed Jun 28, 2020
1 parent ec15985 commit a189f31
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/util/gitfs/fs.spec.ts → lib/util/gitfs/fs/index.spec.ts
@@ -1,5 +1,5 @@
import { getName } from '../../../test/util';
import { readLocalFile } from './fs';
import { getName } from '../../../../test/util';
import { readLocalFile } from '.';

describe(getName(__filename), () => {
describe('readLocalFile', () => {
Expand Down
4 changes: 2 additions & 2 deletions lib/util/gitfs/fs.ts → lib/util/gitfs/fs/index.ts
@@ -1,7 +1,7 @@
import * as fs from 'fs-extra';
import { join, parse } from 'upath';
import { RenovateConfig } from '../../config/common';
import { logger } from '../../logger';
import { RenovateConfig } from '../../../config/common';
import { logger } from '../../../logger';

let localDir = '';

Expand Down

0 comments on commit a189f31

Please sign in to comment.