Guided tour updates
[debian/openrocket] / core / resources-src / datafiles / tours / convert-images.sh
index f9fa53c15b79507296357ee89ccab432f199a666..c62314a6ce56f80208e2444e72b456f0285d35e7 100755 (executable)
@@ -6,7 +6,7 @@
 # files into the suitably sized jpg images in the datafiles directory.
 #
 
-DEST=../../datafiles/tours
+DEST=../../../resources/datafiles/tours
 
 CONVERSION="-background #ececec -flatten -geometry 600x400 -quality 85"
 
@@ -27,4 +27,4 @@ find -iname "*.png" -o -iname "*.jpg" | grep -v MANUAL | while read FILE; do
     BASE="$(echo $FILE | sed 's/\.png$//' | sed 's/\.jpg$//')"
     convert $CONVERSION $FILE $DEST/$BASE.jpg
 
-done
\ No newline at end of file
+done