diff --git a/cuchulucputils/linux.py b/cuchulucputils/linux.py index 32570ef..1958b04 100644 --- a/cuchulucputils/linux.py +++ b/cuchulucputils/linux.py @@ -16,6 +16,10 @@ def shell_command(command): else: return True +def shell_command_ret(command): + + return call(command, shell=True) + def check_distro(arr_command): distro_id=distro.id() diff --git a/pyproject.toml b/pyproject.toml index 7f9bf99..1a50016 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi" name = "cuchulucputils" authors = [{name = "Antonio de la Rosa", email = "antonio.delarosa@salirdelhoyo.com"}] readme = "README.md" -version = "0.76.5" +version = "0.76.6" description = "Utils for make *nix scripts." # dynamic = ["version", "description"] diff --git a/setup.py b/setup.py index 74a526f..47e5680 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ if sys.version_info < (3, 9): raise NotImplementedError("Sorry, you need at least Python 3.9 for use cuchulucputils.") setup(name='cuchulucputils', - version='0.76.5', + version='0.76.6', description='Utils for make *nix scripts.', long_description='Utils for make *nix scripts.', author='Antonio de la Rosa Caballero',