fix lint errors in the truffle completions

pull/2107/head
Gurkirat Singh 2022-03-06 04:19:16 +05:30 committed by GitHub
parent 0089a25742
commit a4fb65fafa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
# shellcheck shell=bash # shellcheck shell=bash
__truffle_completion() { __truffle_completion() {
local prev=$(_get_pword) local prev
local curr=$(_get_cword) prev=$(_get_pword)
case $prev in case $prev in
compile) compile)
@ -29,7 +29,7 @@ __truffle_completion() {
exec) exec)
COMPREPLY=(--{network,compile}) COMPREPLY=(--{network,compile})
;; ;;
debug) init)
COMPREPLY=(--force) COMPREPLY=(--force)
;; ;;
migrate) migrate)