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
0ac1fd1a
Commit
0ac1fd1a
authored
Sep 28, 2016
by
Jeromy Johnson
Committed by
GitHub
Sep 28, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3264 from vasild/fix/tar_command
Explicitly specify the input file to tar with "-f -"
parents
abe44b86
c2dca4bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
bin/dist_get
bin/dist_get
+1
-1
No files found.
bin/dist_get
View file @
0ac1fd1a
...
...
@@ -52,7 +52,7 @@ unarchive() {
tar.gz
)
if
have_binary
tar
;
then
echo
"==> using 'tar' to extract binary from archive"
cat
"
$ua_infile
"
|
tar
-O
-z
-x
"
$ua_distname
/
$ua_distname
"
>
"
$ua_outfile
"
cat
"
$ua_infile
"
|
tar
-O
-z
-x
-f
-
"
$ua_distname
/
$ua_distname
"
>
"
$ua_outfile
"
else
die
"no binary on system for extracting tar files"
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