Skip to content

Commit 42b5eba

Browse files
committed
Fixation
1 parent f10602c commit 42b5eba

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

docs/website/getting-started.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123

124124
<div id="web-installers" class="sec-head">Website Download Installers</div>
125125
<div class="prose">
126-
<p>If you are starting from the docs website directly, download one installer below. Each installer downloads the repository into a temporary folder and then runs the same maintained lifecycle scripts used by repository installs.</p>
126+
<p>If you are starting from the docs website directly, download one installer below. Each installer fetches only required framework files into a temporary folder (sparse checkout), then runs the same maintained lifecycle scripts used by repository installs.</p>
127127
<p><a href="web_assets/installers/README.md" target="_blank">Open installer usage guide</a> for modes, flags, and troubleshooting notes.</p>
128128
</div>
129129

docs/website/web_assets/installers/asrfacet-rb-installer-linux.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,9 @@ download_repo() {
138138

139139
if git clone --depth 1 --filter=blob:none --sparse --branch "$BRANCH" "$REPO_URL" "$repo_dir"; then
140140
local sparse_paths=()
141-
mapfile -t sparse_paths < <(required_paths_for_mode)
141+
while IFS= read -r path; do
142+
sparse_paths+=("$path")
143+
done < <(required_paths_for_mode)
142144
(
143145
cd "$repo_dir" || exit 1
144146
git sparse-checkout init --no-cone &&

docs/website/web_assets/installers/asrfacet-rb-installer-macos.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,9 @@ download_repo() {
138138

139139
if git clone --depth 1 --filter=blob:none --sparse --branch "$BRANCH" "$REPO_URL" "$repo_dir"; then
140140
local sparse_paths=()
141-
mapfile -t sparse_paths < <(required_paths_for_mode)
141+
while IFS= read -r path; do
142+
sparse_paths+=("$path")
143+
done < <(required_paths_for_mode)
142144
(
143145
cd "$repo_dir" || exit 1
144146
git sparse-checkout init --no-cone &&

0 commit comments

Comments
 (0)