inform user about working directory, if changed from default

This commit is contained in:
Václav Uruba 2023-09-09 20:09:40 +02:00
parent 93f714f8c3
commit 79619c63fb
Signed by: uruba
GPG Key ID: 9D8E987C4B2E1E9C

View File

@ -21,7 +21,7 @@ read_options() {
while getopts "ad:" opt; do
case "${opt}" in
a) OPTION_ASSETS=true;;
d) SOURCEDIR=$OPTARG;;
d) SOURCEDIR=$OPTARG; echo "Using project directory '$SOURCEDIR'.";;
\?) exit 2;;
esac
done