From 99f19dc787252da000857f6b051ea8924a4efff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Jeglinsky?= Date: Mon, 30 Mar 2026 13:27:55 +0200 Subject: [PATCH 1/2] Modify clone command in README for clarity Updated git clone command to use --recurse-submodules. --- readme.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/readme.md b/readme.md index f73bb90..bdfc5b1 100644 --- a/readme.md +++ b/readme.md @@ -9,9 +9,8 @@ Find here a collection of samples for the [SAP Cloud Application Programming Mod Assumed you did your [initial setup of CAP Node.js](https://cap.cloud.sap/docs/get-started/#setup), simply copy & paste these lines to a terminal for a jumpstart: ```sh -git clone -j11 -q --recursive https://github.com/capire/samples cap/samples +git clone --recurse-submodules https://github.com/capire/samples cap/samples cd cap/samples -npm run latest npm install npm test npm start From d398ce7316ffe91063bbec304b0634b37b1c7eb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Jeglinsky?= Date: Mon, 30 Mar 2026 13:29:08 +0200 Subject: [PATCH 2/2] Apply suggestion from @renejeglinsky --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index bdfc5b1..46a7b75 100644 --- a/readme.md +++ b/readme.md @@ -11,6 +11,7 @@ Assumed you did your [initial setup of CAP Node.js](https://cap.cloud.sap/docs/g ```sh git clone --recurse-submodules https://github.com/capire/samples cap/samples cd cap/samples +npm run latest npm install npm test npm start