Commit 898502d5 authored by Oleg Dzhimiev's avatar Oleg Dzhimiev
Browse files

added png's and jpg's

parent 9016d336
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -94,7 +94,7 @@ else
  # Process all bmps
  # b - border size in pixels
  b=20
  for f in *.bmp
  for f in *.bmp *.jpg *.png
  do
    #if there are no *.bmp it still runs once?!
    if [ -f $f ]; then 
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ cd $production_dir
#back up files
echo "-------- $0: Back Up --------"
if [ ! -d $bkp_dir ]; then mkdir $bkp_dir; fi
for f in *.stp *.dxf *.igs *.dwb *.bmp *.pdf~; 
for f in *.stp *.dxf *.igs *.dwb *.bmp *.png *.jpg *.pdf~; 
do 
  if [ -f $f ]; then mv $f $bkp_dir; fi
done