소스 검색

add port command

tags/v0.17.0
Jonathan Cobb 4 년 전
부모
커밋
fcec547e6f
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      bin/jenkins/test-redis

+ 4
- 1
bin/jenkins/test-redis 파일 보기

@@ -52,7 +52,7 @@ function stop_redis() {
}

if [[ -z ${1} ]] ; then
die "expected start or stop"
die "expected one of: start stop port"
fi

case ${1} in
@@ -62,6 +62,9 @@ case ${1} in
"stop")
stop_redis
;;
"port")
redis_port
;;
*)
die "invalid argument: ${1}"
;;


불러오는 중...
취소
저장