Skip to content
Snippets Groups Projects
Commit 2eb6f28f authored by H. William Welliver III's avatar H. William Welliver III
Browse files

we need to strip any trailing / from the module destination directory,

otherwise we fall right through the switch and don't create required directories.

Rev: bin/install_module:1.6
parent 94dc1b3e
Branches
Tags
No related merge requests found
...@@ -11,7 +11,7 @@ DIRS_TO_MAKE= ...@@ -11,7 +11,7 @@ DIRS_TO_MAKE=
DIR="$TO" DIR="$TO"
while : while :
do do
DIR=`echo $DIR | sed -e 's@/[^/]*$@@'` DIR=`echo $DIR | sed -e 's@/[^/]*$@@' -e 's@/$@@'`
case "$DIR" in case "$DIR" in
*.pmod) *.pmod)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment