585d4d01cc
* Unset RepositoryName in Codespaces script * Add devcontainer config to CODEOWNERS
12 lines
292 B
Bash
Executable file
12 lines
292 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
./.devcontainer/source-build-scripts/createTarball.sh
|
|
|
|
cd $(realpath ..)/dotnet-source/
|
|
|
|
./prep.sh
|
|
|
|
# GitHub Codespaces automatically sets RepositoryName, which conflicts with source-build scripts.
|
|
unset RepositoryName
|
|
|
|
./build.sh --online --clean-while-building || true
|