Skip to content

Commit 7a33189

Browse files
committed
fix: run multi commands with &&
1 parent f2ee075 commit 7a33189

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.vscode/tasks.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"tasks": [
66
{
77
"type": "shell",
8-
"command": "cd packages/user_repository && dart pub get && dart run build_runner watch --delete-conflicting-outputs",
8+
"command": "cd packages/user_repository;dart pub get;dart run build_runner watch --delete-conflicting-outputs",
99
"label": "user_repository: run build_runner watch",
1010
"group": "build",
1111
"runOptions": {
@@ -22,7 +22,7 @@
2222
},
2323
{
2424
"type": "shell",
25-
"command": "cd packages/topics_repository && dart pub get && dart run build_runner watch --delete-conflicting-outputs",
25+
"command": "cd packages/topics_repository;dart pub get;dart run build_runner watch --delete-conflicting-outputs",
2626
"label": "topics_repository: run build_runner watch",
2727
"group": "build",
2828
"runOptions": {
@@ -39,7 +39,7 @@
3939
},
4040
{
4141
"type": "shell",
42-
"command": "cd packages/quizzes_repository && dart pub get && dart run build_runner watch --delete-conflicting-outputs",
42+
"command": "cd packages/quizzes_repository;dart pub get;dart run build_runner watch --delete-conflicting-outputs",
4343
"label": "quizzes_repository: run build_runner watch",
4444
"group": "build",
4545
"runOptions": {

0 commit comments

Comments
 (0)