Skip to content

Commit a074c9f

Browse files
committed
feat: change clone dir to 'work'
1 parent f0fe0f1 commit a074c9f

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ lib/
22
dist/
33
node_modules/
44
coverage/
5+
work/

package-lock.json

+17-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/themeConverter.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
import { exec } from "@actions/exec";
1+
import { exec } from '@actions/exec'
22

33
export async function cloneRepository(): Promise<void> {
4-
await exec('git clone', ['https://github.com/microsoft/theme-converter-for-vs']);
5-
}
4+
await exec('git clone', [
5+
'https://github.com/microsoft/theme-converter-for-vs',
6+
'work'
7+
])
8+
}

0 commit comments

Comments
 (0)