Skip to content

Commit db3feb9

Browse files
committed
fix: task get
1 parent 1546b70 commit db3feb9

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ EXAMPLES
112112
$ multi add https://github.com/my-github-org/my-repo
113113
```
114114
115-
_See code: [src/commands/add.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.5.3/src/commands/add.ts)_
115+
_See code: [src/commands/add.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v2.0.0-beta.1/src/commands/add.ts)_
116116
117117
## `multi alias KEYVALUE`
118118
@@ -151,7 +151,7 @@ EXAMPLES
151151
$ multi alias build --interactive
152152
```
153153
154-
_See code: [src/commands/alias.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.5.3/src/commands/alias.ts)_
154+
_See code: [src/commands/alias.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v2.0.0-beta.1/src/commands/alias.ts)_
155155
156156
## `multi alias resolve ALIAS`
157157
@@ -183,7 +183,7 @@ DESCRIPTION
183183
cd into a github repository.
184184
```
185185
186-
_See code: [src/commands/cd.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.5.3/src/commands/cd.ts)_
186+
_See code: [src/commands/cd.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v2.0.0-beta.1/src/commands/cd.ts)_
187187
188188
## `multi exec REPO`
189189
@@ -216,7 +216,7 @@ EXAMPLES
216216
$ multi exec . open https://app.circleci.com/pipelines/github/{repo.fullName}
217217
```
218218
219-
_See code: [src/commands/exec.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.5.3/src/commands/exec.ts)_
219+
_See code: [src/commands/exec.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v2.0.0-beta.1/src/commands/exec.ts)_
220220
221221
## `multi list`
222222
@@ -233,7 +233,7 @@ ALIASES
233233
$ multi ls
234234
```
235235
236-
_See code: [src/commands/list.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.5.3/src/commands/list.ts)_
236+
_See code: [src/commands/list.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v2.0.0-beta.1/src/commands/list.ts)_
237237
238238
## `multi open REPO`
239239
@@ -253,7 +253,7 @@ ALIASES
253253
$ multi o
254254
```
255255
256-
_See code: [src/commands/open.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.5.3/src/commands/open.ts)_
256+
_See code: [src/commands/open.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v2.0.0-beta.1/src/commands/open.ts)_
257257
258258
## `multi remove REPO`
259259
@@ -273,7 +273,7 @@ ALIASES
273273
$ multi rm
274274
```
275275
276-
_See code: [src/commands/remove.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.5.3/src/commands/remove.ts)_
276+
_See code: [src/commands/remove.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v2.0.0-beta.1/src/commands/remove.ts)_
277277
278278
## `multi setup`
279279
@@ -290,7 +290,7 @@ DESCRIPTION
290290
Setup multi
291291
```
292292
293-
_See code: [src/commands/setup.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.5.3/src/commands/setup.ts)_
293+
_See code: [src/commands/setup.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v2.0.0-beta.1/src/commands/setup.ts)_
294294
295295
## `multi view REPO`
296296
@@ -310,7 +310,7 @@ ALIASES
310310
$ multi v
311311
```
312312
313-
_See code: [src/commands/view.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.5.3/src/commands/view.ts)_
313+
_See code: [src/commands/view.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v2.0.0-beta.1/src/commands/view.ts)_
314314
315315
## `multi where REPO`
316316
@@ -330,5 +330,5 @@ DESCRIPTION
330330
Print location of a github repository.
331331
```
332332
333-
_See code: [src/commands/where.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.5.3/src/commands/where.ts)_
333+
_See code: [src/commands/where.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v2.0.0-beta.1/src/commands/where.ts)_
334334
<!-- commandsstop -->
File renamed without changes.

src/multiWrapper.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ function _multi {
1616
echo "--help is not supported on tasks"
1717
else
1818
if [[ -n \${@:2} ]]; then
19-
source <($multi_exec tasks get $1) \${@:2}
19+
source <($multi_exec task get $1) \${@:2}
2020
else
21-
source <($multi_exec tasks get $1) ""
21+
source <($multi_exec task get $1) ""
2222
fi
2323
fi
2424
elif [[ "$1" == "cd" && "$2" != "--help" ]]; then

0 commit comments

Comments
 (0)