Changeset 5351
- Timestamp:
- Jun 27, 2017, 9:08:33 AM (4 years ago)
- Location:
- lliurex-fonts-installer/trunk/fuentes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-fonts-installer/trunk/fuentes/debian/changelog
r4382 r5351 1 lliurex-fonts-installer (1.4.3) xenial; urgency=medium 2 3 * Fixed the installation of fonts with white spaces 4 5 -- Juanma Navarro Mañez <juanma1980@gmail.com> Tue, 27 Jun 2017 09:07:21 +0200 6 1 7 lliurex-fonts-installer (1.4.2) xenial; urgency=medium 2 8 -
lliurex-fonts-installer/trunk/fuentes/install/usr/bin/lliurex-fonts-installer
r288 r5351 77 77 exit 78 78 fi 79 80 79 fi 81 80 … … 139 138 140 139 else if [ $XFRONTEND = "YES" ] ; then 141 PATH_TO_TTF2="$(echo "$PATH_TO_TTF" |sed -e "s% %\\\ %g")"142 140 #cp command doesn't work with backslashes 141 # PATH_TO_TTF2="$(echo "$PATH_TO_TTF" |sed -e "s% %\\\ %g")" 143 142 144 143 #PASSWD_SUDO=$(zenity --hide-text --entry --tittle="Administrator Validation" --text="$MSG_SUDO") … … 165 164 166 165 #gksu "cp -f $PATH_TO_TTF2 $INSTALL_PATH" 167 echo $PASSWD | sudo -S cp -f $PATH_TO_TTF2 $INSTALL_PATH 166 #As commented before, cp doesn't work with backslashes so $PATH_TO_TTF2 is useless 167 # echo $PASSWD | sudo -S cp -f $PATH_TO_TTF2 $INSTALL_PATH 168 echo $PASSWD | sudo -S cp -f "$PATH_TO_TTF" "$INSTALL_PATH" 168 169 if [ "$?" != 0 ];then 169 170 zenity --error --text="$MSG_RETURN_ERROR"
Note: See TracChangeset
for help on using the changeset viewer.