diff --git a/Scripts/Bash/Functions/Svn/svn_copyRepoFile.sh b/Scripts/Bash/Functions/Svn/svn_copyRepoFile.sh index beab877..070dadc 100755 --- a/Scripts/Bash/Functions/Svn/svn_copyRepoFile.sh +++ b/Scripts/Bash/Functions/Svn/svn_copyRepoFile.sh @@ -37,7 +37,11 @@ function svn_copyRepoFile { cli_checkFiles ${SOURCE} -e --is-versioned # Print action reference. - cli_printMessage "${TARGET}" --as-creating-line + if [[ -f ${SOURCE} ]];then + cli_printMessage "${TARGET}/$(basename ${SOURCE})" --as-creating-line + else + cli_printMessage "${TARGET}" --as-creating-line + fi # Copy source location to its target using version control. ${SVN} copy ${SOURCE} ${TARGET} --quiet