Skip to content
Snippets Groups Projects

Resolve "Add gitlab CI automatic build"

4 files
+ 51
6
Compare changes
  • Side-by-side
  • Inline

Files

 
#!/bin/bash
 
 
# We need to install dependencies only for Docker
 
[[ ! -e /.dockerenv ]] && exit 0
 
 
# Display debug in console
 
if [ -n "${DEBUG}" ]; then
 
set -xe
 
fi
 
 
# Install missing dependencies
 
apt-get update -yqq
 
apt-get install -yqq pandoc pdflatex
Loading