From ec40acf2c3d89199fd4843fa5a88aeefcb560c87 Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Tue, 9 Jan 2018 12:31:32 +0100 Subject: [PATCH] Add a script that bundles the demo with AppImage for all Linux distribs. --- .../Bundle_polyhedron_demo_with_appimage.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Scripts/developer_scripts/Bundle_polyhedron_demo_with_appimage.sh diff --git a/Scripts/developer_scripts/Bundle_polyhedron_demo_with_appimage.sh b/Scripts/developer_scripts/Bundle_polyhedron_demo_with_appimage.sh new file mode 100644 index 00000000000..ba4e879cd2b --- /dev/null +++ b/Scripts/developer_scripts/Bundle_polyhedron_demo_with_appimage.sh @@ -0,0 +1,8 @@ +#!/bin/bash +if [ "$1" == '--help' ]; then + echo "Usage: $0 " + echo "Builds and packages the Polyhedron demo form the CGAL dir." + exit 0 +fi +docker run --rm -v "$2":/results:Z -v "$1":/cgal:ro docker.io/cgal/bundle-3d-demo '/scripts/build.sh -j6 && /scripts/deploy.sh' +