From 4c8867d3a1a2c6f7e67b5659e13399df9c33a09c Mon Sep 17 00:00:00 2001 From: Ankit Kumar Date: Wed, 26 Feb 2020 10:48:03 -0800 Subject: [PATCH] Update README.md Add info to make gozip executable --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 595c4b4b4..e9aa2f2f0 100644 --- a/README.md +++ b/README.md @@ -134,11 +134,12 @@ unzip -d azure-functions-cli Azure.Functions.Cli.linux-x64.*.zip 3. Make the `func` command executable -Zip files do not maintain the executable bit on binaries. So, you'll need to make the `func` binary executable. Assuming you used the instructions above to unzip: +Zip files do not maintain the executable bit on binaries. So, you'll need to make the `func` binary, as well as `gozip` (used by func during packaging) executables. Assuming you used the instructions above to unzip: ```bash cd azure-functions-cli chmod +x func +chmod +x gozip ./func ```