-#!/usr/bin/env ruby
-# require 'rubygems'
-# require 'git'
-require 'fileutils'
-include FileUtils
-
-# Repo = Git.open File.expand_path('../')
-#
-# Old = Repo.object(ARGV.shift) # aa453216d1b3e49e7f6f98441fa56946ddcd6a20
-# New = Repo.object ARGV.shift # 68f7abf4e6f922807889f52bc043ecd31b79f814
-# Refname = ARGV.shift # refs/heads/master
-
-# Branch = Repo.branches[Refname.split('/')[2..-1].join('/')] # Not sure if I trust this completely...
-
-puts pwd # wtf is going on
-system 'pwd' # wtf is going on
-
-puts 're-checking out'
-system 'cd ../ ; pwd ; git-checkout -f master' # Should force the push to actually go live
-puts 'cding'
-cd '../'
-puts 're-checking out, again'
-system 'pwd; git-checkout -f master'
-puts 'Re-deploying blog...'
-system 'rake deploy'
\ No newline at end of file
+#!/bin/bash
+pwd
+cd ../
+pwd
+echo 'Updating working copy'
+git-checkout -f master
+echo 'Re-deploying blog'
+rake deploy
\ No newline at end of file