diff --git a/README.md b/README.md index 8348a07..d22df0d 100644 --- a/README.md +++ b/README.md @@ -17,5 +17,5 @@ A copy of this thing is deployed to Heroku with a Heroku Scheduler addon configured to run the following once daily: ``` bash -bundle exec ruby cpi_fetcher.rb | bundle exec ruby mini_s3put.rb +bundle exec ./sync ``` diff --git a/sync b/sync new file mode 100755 index 0000000..7b44e7c --- /dev/null +++ b/sync @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +ruby cpi_fetcher.rb | ruby mini_s3put.rb