Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
liweijie0812 committed Jan 2, 2025
1 parent e149e80 commit f116d16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29949,7 +29949,7 @@ function run() {
yield (0, exec_1.exec)(`ls -al`);
yield (0, exec_1.exec)(`git clone ${repo_url} ../tdesign-vue-next`);
yield (0, exec_1.exec)(`ls -al ../`);
yield (0, exec_1.exec)(`ls -al`, [`../tdesign-vue-next`]);
yield (0, exec_1.exec)(`ls -al`, [], { cwd: `../tdesign-vue-next` });
// await exec(`ls -al`)
// await exec(`git submodule update --init --remote`)
// await exec(`git status`)
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export async function run(): Promise<void> {
await exec(`ls -al`)
await exec(`git clone ${repo_url} ../tdesign-vue-next`)
await exec(`ls -al ../`)
await exec(`ls -al`, [`../tdesign-vue-next`])
await exec(`ls -al`, [], { cwd: `../tdesign-vue-next` })
// await exec(`ls -al`)
// await exec(`git submodule update --init --remote`)
// await exec(`git status`)
Expand Down

0 comments on commit f116d16

Please sign in to comment.