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 if test $countP -gt 1 ; then
name=$( echo $name | cut -d '.' -f -$(( $countP - 1 ))) name=$( echo $name | cut -d '.' -f -$(( $countP - 1 )))
fi fi
if test "$3" != "" ; then if test "$2" != "" ; then
target=$( echo "$3/$name.cs" ) target=$( echo "$2/$name.cs" )
else else
target=$( echo "$name.cs" ) target=$( echo "$name.cs" )
fi fi
if test "$3" != "" ; then if test "$2" != "" ; then
if ! ls | egrep -q "^$3$" ; then if ! ls | egrep -q "^$2$" ; then
mkdir -p $3 mkdir -p $2
fi fi
fi fi

Loading…
Cancel
Save