This repository has been archived on 2025-09-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
dotnet-installer/scripts/ci_build.sh

14 lines
237 B
Bash
Raw Normal View History

2015-10-21 12:07:54 -07:00
#!/usr/bin/env bash
2015-10-22 12:31:58 -07:00
whoami
2015-10-21 12:07:54 -07:00
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2015-10-22 12:14:58 -07:00
if [[ "$(uname)" == "Linux" ]]; then
$SCRIPT_DIR/dockerbuild.sh debian $@
2015-10-22 12:14:58 -07:00
else
$SCRIPT_DIR/../build.sh $@
fi
2015-10-21 12:07:54 -07:00
ret_code=$?
exit $ret_code