Rimosso codice per rilevare le dipendenze con apt. Ora è dipendente dal flag 'debug'.
This commit is contained in:
parent
31db0bf5e9
commit
cc10bff939
|
@ -93,7 +93,7 @@ class Build():
|
||||||
if self.verbose:
|
if self.verbose:
|
||||||
print("--- Preliminary Phase ---")
|
print("--- Preliminary Phase ---")
|
||||||
|
|
||||||
if isinstance(shutil.which('apt'), str):
|
if self.debug and isinstance(shutil.which('apt'), str):
|
||||||
# APT is found in path. We assume we can find dependencies.
|
# APT is found in path. We assume we can find dependencies.
|
||||||
self.check_dependencies = True
|
self.check_dependencies = True
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
version = "1.4.0rc0"
|
version = "1.4.0rc1"
|
||||||
|
|
Loading…
Reference in New Issue