mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
12 lines
244 B
Bash
12 lines
244 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Location of current script
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
||
|
docker run \
|
||
|
-v `pwd`:`pwd` \
|
||
|
-w `pwd` --rm \
|
||
|
--user $(id -u):$(id -g) \
|
||
|
-it elpaso/mxe-qt5-builder \
|
||
|
${DIR}/build-mxe.sh
|