@@ -237,12 +237,11 @@ $(colors 'G')build-docker$(colors 'W')        Build Docker services
237237$( colors ' G' )  release$( colors ' W' )               Create a new release
238238$( colors ' G' )  release-push$( colors ' W' )          Push the new release
239239$( colors ' Y' )  Options:$( colors ' N' ) 
240+ $( colors ' G' )  --token=<TOKEN>$( colors ' W' )       Creating containers with previously created token
241+ $( colors ' G' )  -v, --verbose$( colors ' W' )         Make the command more talkative
240242$( colors ' G' )  -l, --logs$( colors ' W' )            Display Docker container logs
241- $( colors ' G' )  -p, --push$( colors ' W' )            Push the new release
242243$( colors ' G' )  -f, --force$( colors ' W' )           To delete the target folder or recompile the source code
243- $( colors ' G' )  --token=<TOKEN>$( colors ' W' )       Creating containers with previously created token
244244$( colors ' G' )  -h, --help$( colors ' W' )            Display help
245- $( colors ' G' )  -v, --verbose$( colors ' W' )         Make the command more talkative
246245    "  
247246    echo  -e " $output \n" | sed ' 1d; $d' 
248247    return  0
@@ -263,9 +262,9 @@ function check_opts() {
263262            compile) COMPILE=1 ;  ARGS+=(" $opt "  ) ;;
264263            build-docker) BUILD_DOCKER=1 ;  ARGS+=(" $opt "  ) ;;
265264            --token=* ) ECOCODE_TOKEN=$( echo " $opt " | awk -F= ' {print $2}' )   ;;
266-             --logs) DISPLAY_LOGS =1 ;;
267-             --verbose) VERBOSE =1 ;;
268-             --force) FORCE=1 ;;
265+             --verbose|-v) VERBOSE =1 ;;
266+             --logs|-l) DISPLAY_LOGS =1 ;;
267+             --force|-f ) FORCE=1 ;;
269268            --test) TEST=1 ;;
270269            --fixture=* ) FIXTURE=$( echo " $opt " | awk -F= ' {print $2}' )   ;;
271270            --help) HELP=1 ;;
0 commit comments