source: docker/context/entrypoint.sh@ 971:3f37dc53abb3

version_0.39_maint
Last change on this file since 971:3f37dc53abb3 was 916:4f738ffc3596, checked in by István Váradi <ivaradi@…>, 5 years ago

Support for building for Windows using Wine

  • Property exe set to *
File size: 209 bytes
Line 
1#!/bin/bash
2
3scriptdir=$(cd $(dirname $0) && pwd)
4
5if test "$1" = "initialize"; then
6 "${scriptdir}/setup.sh"
7elif test "$1" = "build"; then
8 shift
9 "${scriptdir}/build.sh" "$@"
10else
11 exec "$@"
12fi
Note: See TracBrowser for help on using the repository browser.