diff --git a/docs/providers/openwhisk/guide/services.md b/docs/providers/openwhisk/guide/services.md index a01b2b90a..901933c1b 100644 --- a/docs/providers/openwhisk/guide/services.md +++ b/docs/providers/openwhisk/guide/services.md @@ -197,5 +197,10 @@ To execute the locally installed Serverless executable you have to reference the Example: ``` -node ./node_modules/serverless/bin/serverless deploy +node node_modules/.bin/serverless deploy +``` + +Or with npx (bundled with npm >= 5.2.0) +``` +npx serverless deploy ```