From 28841035affb9887c6dd29303e79905223738637 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Wed, 31 Aug 2016 16:58:10 -0400 Subject: [PATCH] Simplify syncing via a script wheee --- README.md | 2 +- sync | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100755 sync 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