8 lines
237 B
Bash
8 lines
237 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# build.sh will bootstrap the cli and ultimately call "dotnet build"
|
||
|
|
||
|
working_tree_root="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
$working_tree_root/dotnet.sh build $working_tree_root/linker.sln $@
|
||
|
exit $?
|