#!/usr/bin/env ruby

# This script lets you run `bundle exec` in one directory, and then changes into another.

Dir.chdir(ARGV.shift)
exec(*ARGV)
