diff options
author | Jefferson Julio <[email protected]> | 2022-05-15 21:08:07 -0300 |
---|---|---|
committer | Jefferson Julio <[email protected]> | 2022-05-15 21:08:07 -0300 |
commit | b38b775980d117ada07dc9f8e23c228bc23bcbdd (patch) | |
tree | fab5f1fb3b4c6578baddeb3293403988951bc1ca | |
parent | 7a1d0f95822a06be1db201ad3724e51a2160818d (diff) | |
download | rest-run-b38b775980d117ada07dc9f8e23c228bc23bcbdd.tar.bz2 rest-run-b38b775980d117ada07dc9f8e23c228bc23bcbdd.zip |
Little fix.
-rwxr-xr-x | rest-run | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -208,11 +208,11 @@ if [[ ${#ARGS[@]} -gt 1 ]]; then fi case "$rest_method" in - POST|post);; - GET|get);; - PUT|put);; - PATCH|patch);; - DELETE|delete);; + POST);; + GET);; + PUT);; + PATCH);; + DELETE);; *) fail-no-help "Invalid HTTP Verb $rest_method" ;; esac |