#!/bin/sh

mv lib lib.off
/usr/bin/rake
status=$?
mv lib.off lib
exit $status
