mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-29 10:26:12 +01:00
Fix build without checksum
This commit is contained in:
parent
a155f8bcd0
commit
83bd51f99d
1 changed files with 2 additions and 2 deletions
|
@ -101,9 +101,9 @@ class BuildPackage(object):
|
|||
self.prgnam, sum_time))
|
||||
else:
|
||||
subprocess.call("{0} ./{1}.SlackBuild".format(
|
||||
" ".join(pass_var), self.prgnam, shell=True))
|
||||
" ".join(pass_var), self.prgnam), shell=True)
|
||||
os.chdir(self.path)
|
||||
except (OSError, IOError):
|
||||
except KeyboardInterrupt: # (OSError, IOError):
|
||||
self.msg.pkg_not_found("\n", self.prgnam, "Wrong file", "\n")
|
||||
|
||||
def _create_md5_dict(self):
|
||||
|
|
Loading…
Reference in a new issue