fix : modification du convertisseur
continuous-integration/drone/push Build is passing Details

API
Damien NORTIER 1 year ago
parent 8009f0f977
commit a8a3b0f42e

@ -21,15 +21,15 @@ countP=$( echo $name | tr "." "\n" | wc -l )
if test $countP -gt 1 ; then
name=$( echo $name | cut -d '.' -f -$(( $countP - 1 )))
fi
if test "$3" != "" ; then
target=$( echo "$3/$name.cs" )
if test "$2" != "" ; then
target=$( echo "$2/$name.cs" )
else
target=$( echo "$name.cs" )
fi
if test "$3" != "" ; then
if ! ls | egrep -q "^$3$" ; then
mkdir -p $3
if test "$2" != "" ; then
if ! ls | egrep -q "^$2$" ; then
mkdir -p $2
fi
fi

Loading…
Cancel
Save