Skip to content

Commit b499825

Browse files
committed
✨ updated for valet 0.30
1 parent 1ef8ea3 commit b499825

File tree

4 files changed

+4
-11
lines changed

4 files changed

+4
-11
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
### VS Code ###
22
.vscode/**
33
!.vscode/extensions.json
4-
!.vscode/settings.json
54

65
### WINDOWS ###
76
desktop.ini

.vscode/settings.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

commands.d/gitlab.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ source gitlab
2525
##VALET_COMMAND
2626
function gitlabProjects() {
2727
local role
28-
core::parseArguments "$@" && eval "${RETURNED_VALUE}"
29-
core::checkParseResults "${help:-}" "${parsingErrors:-}"
28+
command::parseArguments "$@" && eval "${REPLY}"
29+
command::checkParsedResults
3030

3131
if command -v gitlab::getProjects &>/dev/null; then
3232
gitlab::getProjects "${role}"

libraries.d/lib-gitlab

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
#
1212
# Returns:
1313
#
14-
# - `RETURNED_ARRAY`: The list of projects.
14+
# - `REPLY_ARRAY`: The list of projects.
1515
#
1616
# ```bash
1717
# gitlab::getProjects "developer"
18-
# for project in "${RETURNED_ARRAY[@]}"; do
18+
# for project in "${REPLY_ARRAY[@]}"; do
1919
# echo "$project"
2020
# done
2121
# ```

0 commit comments

Comments
 (0)