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 37a3e2e commit e149e80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29949,8 +29949,8 @@ 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)(`cd`, [`../tdesign-vue-next`]);
yield (0, exec_1.exec)(`ls -al`);
yield (0, exec_1.exec)(`ls -al`, [`../tdesign-vue-next`]);
// await exec(`ls -al`)
// await exec(`git submodule update --init --remote`)
// await exec(`git status`)
});
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ 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(`cd`, [`../tdesign-vue-next`])
await exec(`ls -al`)
await exec(`ls -al`, [`../tdesign-vue-next`])
// await exec(`ls -al`)
// await exec(`git submodule update --init --remote`)
// await exec(`git status`)
}
Expand Down

0 comments on commit e149e80

Please sign in to comment.