Skip to content

Commit

Permalink
Print ls in case of not executable
Browse files Browse the repository at this point in the history
  • Loading branch information
SleeplessByte committed Aug 11, 2024
1 parent 15a8105 commit f40a799
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bin/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,11 @@ else
echo "💥 jest executable missing at ${bin_jest} or not executable"
echo "👁️ ${bin_jest} -> $(realpath "${bin_jest}")"
echo " ${COREPACK_ROOT_DIR} as corepack root"
if [[ -f "${bin_jest}"]]; then
echo "It does exist"
ls -l "${bin_jest}"
fi

exit -1
fi;

Expand Down

0 comments on commit f40a799

Please sign in to comment.