Fixed unmatched function signature for do_fetch in jdk package
This commit is contained in:
parent
6449e8b1b9
commit
f90eaa5f46
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ class Jdk(Package):
|
|||
'-H', # specify required License Agreement cookie
|
||||
'Cookie: oraclelicense=accept-securebackup-cookie']
|
||||
|
||||
def do_fetch(self):
|
||||
def do_fetch(self, mirror_only=False):
|
||||
# Add our custom curl commandline options
|
||||
tty.msg(
|
||||
"[Jdk] Adding required commandline options to curl " +
|
||||
|
@ -39,7 +39,7 @@ def do_fetch(self):
|
|||
spack.curl.add_default_arg(option)
|
||||
|
||||
# Now perform the actual fetch
|
||||
super(Jdk, self).do_fetch()
|
||||
super(Jdk, self).do_fetch(mirror_only)
|
||||
|
||||
|
||||
def install(self, spec, prefix):
|
||||
|
|
Loading…
Reference in a new issue