Remove useless def unpack

Before I learned that I was stumbling over a real but (#1308), I thought
I needed to arrange for the fetcher to skip the unpack step.

This commit removes the useful `def unpack`.
This commit is contained in:
George Hartzell 2016-08-02 11:32:19 -04:00
parent 6f332c7e4c
commit c77425bb22

View File

@ -36,9 +36,6 @@ class Nextflow(Package):
depends_on('jdk') depends_on('jdk')
def unpack(self):
pass
def install(self, spec, prefix): def install(self, spec, prefix):
mkdirp(prefix.bin) mkdirp(prefix.bin)
install("nextflow", join_path(prefix.bin, "nextflow")) install("nextflow", join_path(prefix.bin, "nextflow"))