mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-21 05:06:29 +00:00
12 lines
160 B
Bash
12 lines
160 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ -d "scratch" ]
|
|
then
|
|
rm -rf scratch
|
|
fi
|
|
|
|
mkdir -p scratch
|
|
cp -r ../test-projects/test-model scratch
|
|
cargo run -- serve scratch/test-model |