mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
8 lines
252 B
Plaintext
Executable File
8 lines
252 B
Plaintext
Executable File
#Keeping track of GPG sig files on ftp server, additional safety measure.
|
|
DIR=/tmp/lyxftp.$$
|
|
mkdir $DIR
|
|
#curlftpfs ftp://ftp.ucsd.edu/LyX/ $DIR
|
|
curlftpfs ftp://ftp.lyx.org/pub/lyx/ $DIR
|
|
cp ${DIR}/stable/*/*.sig ${DIR}/bin/*/*.sig archive/
|
|
git status .
|