From 2d479032c84d80ce50cccd9e8d97b93c074c2579 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Sat, 6 Feb 2021 13:01:30 +0300 Subject: [PATCH] Fixed setup-lisp step. --- .github/actions/setup-lisp/action.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-lisp/action.yml b/.github/actions/setup-lisp/action.yml index fff4525..903a789 100644 --- a/.github/actions/setup-lisp/action.yml +++ b/.github/actions/setup-lisp/action.yml @@ -72,6 +72,9 @@ runs: shell: bash run: | echo ::group::Install ASDF System - qlot exec ros install ${{ inputs.asdf-system }} + if [[ -n "${{ inputs.asdf-system }}" ]]; then + qlot exec ros install ${{ inputs.asdf-system }} + else + echo "ASDF system wasn't provided." + fi echo ::endgroup:: - if: ${{ inputs.asdf-system }}