# Change current directory into project rootoriginal_dir=$(pwd)script_dir=$(dirname"$0")cd"$script_dir"# Remove old dist file, build, and installrm-rf distpython setup.py bdist_wheelpip install dist/*.whl# Open users' original directorycd"$original_dir"