mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-18 09:38:43 +01:00
* Initial Commit * Makes the CI work (maybe) * Of course CI has a hissy fit * Actually fixes the codebase * Oops 1 * Tweaks * oops
9 lines
192 B
Bash
Executable File
9 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
git clone https://github.com/OpenDreamProject/OpenDream.git OpenDream
|
|
cd OpenDream
|
|
git submodule update --init --recursive
|
|
dotnet restore
|
|
dotnet build -c Release
|