From 1822b29cbca4d081231a5ab456ec2a3cd8049ab1 Mon Sep 17 00:00:00 2001 From: Sam Sternberg Date: Thu, 13 Nov 2025 10:59:58 -0500 Subject: [PATCH] Add executable permissions step to installation instructions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add chmod +x step to ensure dist/index.js has executable permissions after building, preventing "permission denied" errors when running the sky command after global installation. Fixes #14 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index d533c99..c6ade4f 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,9 @@ npm install # Build the CLI npm run build +# Make the compiled file executable +chmod +x dist/index.js + # Install the cloned CLI globally with npm npm i -g . ```