mirror of https://github.com/penpot/penpot.git
22 lines
281 B
Bash
Executable File
22 lines
281 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
EMSDK_QUIET=1 . /opt/emsdk/emsdk_env.sh
|
|
|
|
_BUILD_NAME="${_BUILD_NAME:-render_wasm}"
|
|
|
|
_SCRIPT_DIR=$(dirname $0);
|
|
pushd $_SCRIPT_DIR;
|
|
|
|
. ./_build_env
|
|
|
|
set -ex;
|
|
|
|
setup;
|
|
build;
|
|
copy_artifacts "../frontend/resources/public/js";
|
|
copy_shared_artifact;
|
|
|
|
exit $?;
|
|
|
|
popd
|