From d364e61b8c211ddff606c1511dae9475402f6eb5 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sun, 23 Jun 2024 11:27:27 +0300 Subject: [PATCH] docs: improve the `v deploy.vsh` section --- doc/docs.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/docs.md b/doc/docs.md index 3dfc96fa88..e1de8feee6 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -7679,10 +7679,10 @@ sh('ls') Now you can either compile this like a normal V program and get an executable you can deploy and run anywhere: -`v deploy.vsh && ./deploy` +`v -skip-running deploy.vsh && ./deploy` -Or just run it more like a traditional Bash script: -`v run deploy.vsh` +Or run it like a traditional Bash script: +`v run deploy.vsh` (or simply just `v deploy.vsh`) On Unix-like platforms, the file can be run directly after making it executable using `chmod +x`: `./deploy.vsh`