From 041f2186b7c1b6793b98c6d248cdf2c80fcb7ff8 Mon Sep 17 00:00:00 2001 From: Bradley Schofield Date: Tue, 12 Oct 2021 09:42:37 +0100 Subject: [PATCH] Update docs/tutorials/add-runtime.md Co-authored-by: kodumbeats --- docs/tutorials/add-runtime.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/add-runtime.md b/docs/tutorials/add-runtime.md index 80f1842ec..80d69c15a 100644 --- a/docs/tutorials/add-runtime.md +++ b/docs/tutorials/add-runtime.md @@ -201,7 +201,7 @@ Go ahead and save this file. Then `cd` into the root of the `php-runtimes` proje ``` chmod +x ./tests/resources/package-LANGUAGE_NAME.sh && ./tests/resources/package-LANGUAGE_NAME.sh ``` -The first section changes the permissions of your script so you can execute it, while the second part actually executes the script and packages up your function. +This command adds execution permissions to your script and executes it. NOTE: If you ever want to repackage your script you can simply run: `./tests/resources/package-LANGUAGE_NAME.sh` in the root of the `php-runtimes` project since you don't have to change permissions more than once.