[DMDB] Fix typo in dmdb summary

This commit is contained in:
2026-08-13 13:37:17 +02:00
parent 90c543553f
commit b6c0086766
3 changed files with 8 additions and 3 deletions
+7 -2
View File
@@ -37,13 +37,18 @@ if [[ $usesubmodule != 'n' ]]; then
else
read -e -p "Where are the helper files located (absolute path to folder only, tab-completion enabled)? " helperpath
if [[ ${dir:0:1} == '/' ]]; then
if [[ ${helperpath:0:1} == '/' ]]; then
createFiles $helperpath
elif [[ ${helperpath:0:1} == '~' ]]; then
helperpath=$(readlink -f $helperpath)
createFiles $helperpath
else
echo "Note: You did not enter an absolute path, it was expanded automatically"
createFiles $(readlink -f $(pwd)/$helperpath)
helperpath=$(readlink -f $(pwd)/$helperpath)
createFiles $helperpath
fi
echo "
=> Path was set to $helperpath
=> If you entered also the file name, rerun this script, the compile will fail in that case.
"
fi