Skip to content

Commit

Permalink
fix failure to load objects on older BusyBox versions
Browse files Browse the repository at this point in the history
  • Loading branch information
OneCDOnly committed Oct 10, 2024
1 parent b674f62 commit 24f4229
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions support/sherpa-manager.source
Original file line number Diff line number Diff line change
Expand Up @@ -14457,7 +14457,7 @@ LoadObjects()
if [[ ! -e $r_objects_pathfile ]] || ! IsThisFileRecent "$r_objects_pathfile" "$r_file_change_threshold_minutes"; then
ShowAsProc 'download objects'

if /sbin/curl"${curl_options}" --silent --fail "$r_objects_archive_url" > "$r_objects_archive_pathfile"; then
if /sbin/curl${curl_options} --silent --fail "$r_objects_archive_url" > "$r_objects_archive_pathfile"; then
/bin/tar --extract --gzip --no-same-owner --file="$r_objects_archive_pathfile" --directory="$r_cache_path"
fi
fi
Expand Down Expand Up @@ -14504,7 +14504,7 @@ LoadPackages()
if [[ ! -e $r_packages_pathfile ]] || ! IsThisFileRecent "$r_packages_pathfile" "$r_file_change_threshold_minutes"; then
ShowAsProc 'download QPKG list'

if /sbin/curl"${curl_options}" --silent --fail "$r_packages_archive_url" > "$r_packages_archive_pathfile"; then
if /sbin/curl${curl_options} --silent --fail "$r_packages_archive_url" > "$r_packages_archive_pathfile"; then
/bin/tar --extract --gzip --no-same-owner --file="$r_packages_archive_pathfile" --directory="$r_cache_path"
fi

Expand Down

0 comments on commit 24f4229

Please sign in to comment.