* how we use Dir.chdir here: ``` puts 'building' orig_dir = Dir.pwd Dir.chdir File.expand_path(File.dirname(**FILE**)) Dir.chdir '..' # system call Dir.chdir orig_dir ``` ```