We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6221466 commit f10b27eCopy full SHA for f10b27e
_scripts/pdftogif.sh
@@ -6,6 +6,15 @@ if [[ $# -lt 2 ]] ; then
6
exit 1
7
fi
8
9
+if ! [ -x "$(command -v gs)" ]; then
10
+ echo 'Error: gs is not installed. This script depends on it' >&2
11
+ exit 1
12
+fi
13
+
14
+if ! [ -x "$(command -v convert2)" ]; then
15
+ echo 'Error: convert is not installed. This script depends on it' >&2
16
17
18
19
SLIDES_PDF=$1
20
PRES_ID=$2
0 commit comments