]> git.lyx.org Git - lyx.git/blobdiff - development/tools/lyx-build
Update tex2lyx tests.
[lyx.git] / development / tools / lyx-build
index 3b064c23905f69335fb95c6c6bdea46355ea9dae..ae9237dbecbfbc6e27d6c9d8626d6263f4c10dda 100755 (executable)
@@ -105,6 +105,13 @@ if [ ! -d "$BASE/lyx-patch/lyx-$LAST" ]; then
     echo "Will try to download from LyX site....";
     pushd $BASE/lyx-patch/;
     wget ftp://ftp.lyx.org/pub/lyx/stable/${FIRST}x/lyx-$LAST.tar.gz;
+    wget ftp://ftp.lyx.org/pub/lyx/stable/${FIRST}x/lyx-$LAST.tar.gz.sig
+    gpg -q --verify lyx-$LAST.tar.gz.sig
+    if ! [ $? == 0 ]; then
+      echo "Signature wrong!"
+      exit 1;
+    fi
+    rm lyx-$LAST.tar.gz.sig
     tar -zxvf lyx-$LAST.tar.gz;
     if [ ! -f lyx-$LAST.tar.gz ]; then
       echo "Still unable to find directory for last version $LAST.";