Skip to content

Commit

Permalink
fixed ubuntu 20.04 workflow bug
Browse files Browse the repository at this point in the history
  • Loading branch information
oxy86 committed Dec 3, 2024
1 parent 3bd7751 commit ad8e7a7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,9 @@ jobs:
ls -lh .
echo "🔎 Search for built executable ./${{env.UNIXNAME}}*..."
if [ -f "./${{env.UNIXNAME}}*" ]; then
if [ -f "./${{env.UNIXNAME}}" ]; then
echo "🎉 executable found!"
find ./build -type f -name "${{env.UNIXNAME}}*"
ls "${{env.UNIXNAME}}*"
ls -ls "${{env.UNIXNAME}}"
else
echo "❌ Error! ./build directory was not created!"
exit 1
Expand Down

0 comments on commit ad8e7a7

Please sign in to comment.