mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-20 20:55:50 +00:00
16 lines
377 B
Bash
Executable File
16 lines
377 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
DIR="$( mktemp -d )"
|
|
PLUGIN_FILE="$DIR/Rojo.rbxmx"
|
|
PLACE_FILE="$DIR/RojoTestPlace.rbxlx"
|
|
|
|
rojo build plugin -o "$PLUGIN_FILE"
|
|
rojo build plugin/place.project.json -o "$PLACE_FILE"
|
|
|
|
remodel bin/put-plugin-in-test-place.lua "$PLUGIN_FILE" "$PLACE_FILE"
|
|
|
|
run-in-roblox -s plugin/testBootstrap.server.lua "$PLACE_FILE"
|
|
|
|
luacheck plugin/src plugin/log plugin/http |