diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-04-22 23:34:11 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-04-22 23:34:11 +0200 |
commit | 5f914a980ce398be8c28708b6910944e2beb74c1 (patch) | |
tree | 2a1b3c58448c73070a21ef6704151fcb796b4531 /bootstrap | |
parent | 873f0ac8448a7f4d2efaef4e9ab9840e90a3b867 (diff) |
integrate SPA
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1,5 +1,7 @@ #!/bin/sh +set -eu + if ! git --version >/dev/null; then echo "git not installed" exit 1 @@ -29,3 +31,13 @@ fi echo "$0: Running autoreconf" autoreconf -if + +echo "Building single-page app (from external Git repository)" +cd contrib/merchant-backoffice +./bootstrap +./configure +make build-single +cp packages/frontend/single/index.html ../spa.html +cd ../.. + +exit 0 |