Skip to content

Commit eae4050

Browse files
authored
Do not create results.txt when using rdfind
1 parent 89d7a73 commit eae4050

7 files changed

+7
-7
lines changed

.ci/mkarchiso.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ patch -d/ -p0 << 'EOF'
1010
# Build airootfs filesystem image
1111
_prepare_airootfs_image() {
1212
+ _msg_info 'Deduping files in the pacstrap directory...'
13-
+ rdfind -checksum sha256 -makehardlinks true "${pacstrap_dir:?}/"
13+
+ rdfind -checksum sha256 -makehardlinks true -makeresultsfile false "${pacstrap_dir:?}/"
1414
+ _msg_info 'Done!'
1515
+
1616
_run_once "_mkairootfs_${airootfs_image_type}"

airootfs/root/customize_airootfs/scripts/1000-automatic-dependencies.sh.jinja2

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ popd
2424

2525
{% if ROCm %}
2626
# Dedupe files
27-
rdfind -checksum sha256 -makehardlinks true .
27+
rdfind -checksum sha256 -makehardlinks true -makeresultsfile false .
2828
{% endif %}

airootfs/root/customize_airootfs/scripts/1000-axolotl-dependencies.sh.jinja2

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ popd
4040

4141
{% if ROCm %}
4242
# Dedupe files
43-
rdfind -checksum sha256 -makehardlinks true .
43+
rdfind -checksum sha256 -makehardlinks true -makeresultsfile false .
4444
{% endif %}

airootfs/root/customize_airootfs/scripts/1000-comfyui-dependencies.sh.jinja2

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ popd
2626

2727
{% if ROCm %}
2828
# Dedupe files
29-
rdfind -checksum sha256 -makehardlinks true .
29+
rdfind -checksum sha256 -makehardlinks true -makeresultsfile false .
3030
{% endif %}

airootfs/root/customize_airootfs/scripts/1000-sillytavern-extras-dependencies.sh.jinja2

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ popd
2929

3030
{% if ROCm %}
3131
# Dedupe files
32-
rdfind -checksum sha256 -makehardlinks true .
32+
rdfind -checksum sha256 -makehardlinks true -makeresultsfile false .
3333
{% endif %}

airootfs/root/customize_airootfs/scripts/1000-text-generation-webui-dependencies.sh.jinja2

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ popd
3434

3535
{% if ROCm %}
3636
# Dedupe files
37-
rdfind -checksum sha256 -makehardlinks true .
37+
rdfind -checksum sha256 -makehardlinks true -makeresultsfile false .
3838
{% endif %}

airootfs/root/customize_airootfs/scripts/1000-vllm-dependencies.sh.jinja2

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ popd
4949

5050
{% if ROCm %}
5151
# Dedupe files
52-
rdfind -checksum sha256 -makehardlinks true .
52+
rdfind -checksum sha256 -makehardlinks true -makeresultsfile false .
5353
{% endif %}

0 commit comments

Comments
 (0)