Skip to content

Commit 28c74f3

Browse files
log when no tools version in the dir.
1 parent 938195c commit 28c74f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cloudevents/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ asdf-manual-install:
101101
pwd && \
102102
ls -la
103103
@echo "from manual test tools versions file contains:"
104-
cat .tool-versions
104+
cat .tool-versions || echo " -> .tool-versions file not found in this directory"
105105
/usr/local/bin/asdf --version
106106
@echo "Setting up asdf environment and adding plugins"
107107
export ASDF_DATA_DIR=$$HOME/.asdf && \
@@ -134,7 +134,7 @@ asdf-install-test:
134134
@echo "current directory is:"
135135
ls -la
136136
@echo "tools versions file contains:"
137-
cat .tool-versions
137+
cat .tool-versions || echo " -> .tool-versions file not found in this directory"
138138
@echo "installing asdf versions"
139139
asdf install
140140
@echo "asdf installation complete"

0 commit comments

Comments
 (0)