Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
eepm
Commits
8c3f65cd
Commit
8c3f65cd
authored
Apr 06, 2024
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eget: fix get response 404 from CloudFlare via range 0-0 downloading (#1)
parent
c4e7228d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
tools_eget
bin/tools_eget
+5
-3
No files found.
bin/tools_eget
View file @
8c3f65cd
...
...
@@ -984,8 +984,9 @@ url_get_response()
local
answer
answer
=
"
$(
quiet
=
1 __wget
--spider
-S
"
$URL
"
2>&1
)
"
# HTTP/1.1 405 Method Not Allowed
if
echo
"
$answer
"
|
grep
-q
"^ *HTTP/[12.]* 405"
;
then
(
quiet
=
1 __wget
--start-pos
=
5000G
-S
"
$URL
"
2>&1
)
# HTTP/1.1 404 Not Found
if
echo
"
$answer
"
|
grep
-q
"^ *HTTP/[12.]* 40[45]"
;
then
(
quiet
=
1 __wget
-O
/dev/null
--header
=
"Range: bytes=0-0"
-S
"
$URL
"
2>&1
)
return
fi
echo
"
$answer
"
...
...
@@ -1030,7 +1031,8 @@ url_get_response()
local
answer
answer
=
"
$(
quiet
=
1 __curl
-LI
"
$URL
"
2>&1
)
"
# HTTP/1.1 405 Method Not Allowed
if
echo
"
$answer
"
|
grep
-q
"^ *HTTP/[12.]* 405"
;
then
# HTTP/1.1 404 Not Found
if
echo
"
$answer
"
|
grep
-q
"^ *HTTP/[12.]* 40[45]"
;
then
(
quiet
=
1 __curl
-L
-i
-r0-0
"
$URL
"
2>&1
)
return
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment