mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-16 21:17:39 +03:00
# Description This pr streamlines the build process by removing the python3 dependency and pointing to the new build scripts.
12 lines
192 B
Bash
Executable File
12 lines
192 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# make sure to start from script dir
|
|
if [ "$(dirname $0)" != "." ]; then
|
|
cd "$(dirname $0)"
|
|
fi
|
|
|
|
cd ../../
|
|
|
|
git submodule update --init --recursive
|
|
dotnet build -c Debug
|