diff --git a/Taskfile.yml b/Taskfile.yml index 2cdb6c4..882de4d 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -22,17 +22,9 @@ tasks: dependencies: cmds: - cmd: 'shellcheck -V 1&>/dev/null || (echo "ERROR: Shellcheck is not installed!"; exit 1)' - - task: 'dependencies:git-submodules' - task: 'dependencies:python' desc: 'Run all dependency-installing tasks' - dependencies:git-submodules: - cmds: - - 'git submodule init' - - 'git submodule sync --recursive' - - 'git submodule update --recursive' - desc: 'Initialise and update Git submodules' - dependencies:python: cmds: - '.venv/bin/python -m pip install -r requirements-dev.txt'