mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
9 lines
326 B
Bash
Executable File
9 lines
326 B
Bash
Executable File
#!/usr/bin/env bash
|
|
_SCRIPT_DIR=$(dirname $0);
|
|
|
|
export SKIA_BINARIES_URL="https://github.com/penpot/skia-binaries/releases/download/0.87.0/skia-binaries-e551f334ad5cbdf43abf-x86_64-unknown-linux-gnu-gl-svg-textlayout-binary-cache-webp.tar.gz"
|
|
|
|
pushd $_SCRIPT_DIR;
|
|
cargo watch -x "test --bin render_wasm -- --show-output"
|
|
popd
|