9 lines
408 B
Bash
Executable file
9 lines
408 B
Bash
Executable file
#!/bin/sh
|
|
# The "slides" prefix is a workaround for latexmk cleanup
|
|
# see: https://tex.stackexchange.com/questions/484484/clean-comment-cut-file-with-latexmk
|
|
|
|
# Check if the files have already been downloaded
|
|
set -- /target/*.jpg
|
|
[ -f "$1" ] || exit 0
|
|
|
|
wget -O target/slides-thunderbird-sig.jpg https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/gallery/images/2011-03-14-10-05-42-4bdd77.jpg
|