Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
5f624efe
Commit
5f624efe
authored
8 years ago
by
Jeromy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix up dist_get script
License: MIT Signed-off-by:
Jeromy
<
why@ipfs.io
>
parent
3c7fad8a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
23 deletions
+24
-23
bin/dist_get
bin/dist_get
+24
-23
No files found.
bin/dist_get
View file @
5f624efe
...
...
@@ -19,24 +19,21 @@ download() {
test
"$#"
-eq
"2"
||
die
"download requires exactly two arguments, was given
$@
"
if
!
check_writeable
"
$output
"
;
then
die
"download error: cannot write to
$output
"
if
!
check_writeable
"
$
dl_
output
"
;
then
die
"download error: cannot write to
$
dl_
output
"
fi
if
have_binary wget
;
then
printf
'==> Using wget to download "%s" to "%s"\n'
"
$url
"
"
$output
"
wget
"
$url
"
-O
"
$output
"
printf
'==> Using wget to download "%s" to "%s"\n'
"
$
dl_
url
"
"
$
dl_
output
"
wget
"
$
dl_
url
"
-O
"
$
dl_
output
"
||
return
elif
have_binary curl
;
then
printf
'==> Using curl to download "%s" to "%s"\n'
"
$url
"
"
$output
"
curl
--silent
"
$url
"
>
"
$output
"
printf
'==> Using curl to download "%s" to "%s"\n'
"
$
dl_
url
"
"
$
dl_
output
"
curl
--silent
"
$
dl_
url
"
>
"
$
dl_
output
"
||
return
elif
have_binary fetch
;
then
printf
'==> Using fetch to download "%s" to "%s"\n'
"
$url
"
"
$output
"
fetch
"
$url
"
-o
"
$output
"
printf
'==> Using fetch to download "%s" to "%s"\n'
"
$
dl_
url
"
"
$
dl_
output
"
fetch
"
$
dl_
url
"
-o
"
$
dl_
output
"
||
return
else
die
"no binary found to download
$url
. exiting."
fi
if
[
"
$?
"
-ne
0
]
;
then
return
$?
die
"no binary found to download
$dl_url
. exiting."
fi
echo
"==> download complete!"
}
...
...
@@ -88,13 +85,12 @@ get_go_vars() {
}
mkurl
()
{
local
name
=
"
$1
"
local
vers
=
"
$2
"
local
archive
=
"
$3
"
local
govars
=
$(
get_go_vars
)
m_name
=
"
$1
"
m_vers
=
"
$2
"
m_archive
=
"
$3
"
m_govars
=
$(
get_go_vars
)
||
die
"could not get go env vars"
echo
"http://dist.ipfs.io/
$name
/
$vers
/
${
name
}
_
${
vers
}
_
$govars
.
$archive
"
echo
"http://dist.ipfs.io/
$
m_
name
/
$
m_
vers
/
${
m_
name
}
_
${
m_
vers
}
_
$
m_
govars
.
$
m_
archive
"
}
distname
=
"
$1
"
...
...
@@ -105,13 +101,18 @@ if [ -z "$distname" ] || [ -z "$outpath" ] || [ -z "$version" ]; then
die
"usage: dist_get <distname> <outpath> <version>"
fi
if
[
${
version
:0:1
}
!=
"v"
]
;
then
echo
"invalid version '
$version
'"
>
&2
die
"versions must begin with 'v', for example: v0.4.0"
fi
case
$version
in
v
*
)
# correct input
;;
*
)
echo
"invalid version '
$version
'"
>
&2
die
"versions must begin with 'v', for example: v0.4.0"
;;
esac
# TODO: don't depend on the go tool being installed to detect this
goenv
=
$(
get_go_vars
)
goenv
=
$(
get_go_vars
)
||
die
"could not get go env vars"
case
$goenv
in
linux-
*
)
...
...
This diff is collapsed.
Click to expand it.
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