#!/bin/bash
# echo command and record pwd for next shell
echo " \$ cd $1"
cd $1 >/dev/null || exit 1
pwd > ${BUILD_PATH}/next.dir
