diff --git a/checkout_repositories/run_ci.sh b/checkout_repositories/run_ci.sh index ba9c15a..3e5a0cf 100644 --- a/checkout_repositories/run_ci.sh +++ b/checkout_repositories/run_ci.sh @@ -20,6 +20,9 @@ else echo "Plugin checkout failed, trying default branch" git clone --depth 1 "$PLUGIN_URL" plugin_repo fi + +echo " --- Installed Plugin content to $(pwd) --- " + cd .. # --- Step 2: Checkout Core --- @@ -32,6 +35,7 @@ else echo "Core checkout failed, trying default branch" git clone --depth 1 https://github.com/bec-project/bec.git bec_core fi +echo " --- Installed Core content to $(pwd) --- " cd .. @@ -45,6 +49,7 @@ else echo "Widgets checkout failed, trying default branch" git clone --depth 1 https://github.com/bec-project/bec_widgets.git bec_widgets fi +echo " --- Installed Widgets content to $(pwd) --- " cd .. @@ -58,7 +63,10 @@ else echo "Ophyd Devices checkout failed, trying default branch" git clone --depth 1 https://github.com/bec-project/ophyd_devices.git bec_ophyd_devices fi +echo " --- Installed Ophyd Devices content to $(pwd) --- " cd .. -echo "--- All checkouts complete ---" \ No newline at end of file +echo "--- All checkouts complete ---" +echo " --- Current Directory: $(pwd) --- " +echo " --- Listing contents: $(ls -la) --- " \ No newline at end of file