Skip to content

Commit

Permalink
Fix wrong path to read file from bash in Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
yasulab committed Feb 23, 2024
1 parent 4b25030 commit e4becd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/scheduler_daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: 🌐 Fetch dojo data from Earth
run: |
bundle exec rake get_data_from_earth
if [ "$NUMBER_OF_DOJOS" -lt "1000" ] ; then
if [ "`cat tmp/number_of_dojos`" -lt "1000" ] ; then
echo "ERROR: NUMBER_OF_DOJOS=`cat tmp/number_of_dojos` should be 1000+. Something went wrong."
exit 1
fi
Expand Down

0 comments on commit e4becd6

Please sign in to comment.