#!/bin/bash

mkdir tmp || exit 1
pushd tmp

bundle init
bundle
status=$?

popd
rm -r tmp

exit $status
