fix lint errors in the truffle completions
parent
0089a25742
commit
a4fb65fafa
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue