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 d4d9239 commit dbce7afCopy full SHA for dbce7af
src/proxy/processors/push-action/parsePush.ts
@@ -1,16 +1,15 @@
1
import { Action, Step } from '../../actions';
2
import zlib from 'zlib';
3
import fs from 'fs';
4
-import path from 'path';
5
import lod from 'lodash';
6
import { CommitContent } from '../types';
7
8
const BitMask = require('bit-mask') as any;
9
10
-const dir = path.resolve(__dirname, './.tmp');
+const dir = './.tmp/';
11
12
if (!fs.existsSync(dir)) {
13
- fs.mkdirSync(dir, { recursive: true });
+ fs.mkdirSync(dir);
14
}
15
16
async function exec(req: any, action: Action): Promise<Action> {
0 commit comments