Scripts changes to accomodate centos builds.

Does not contain changes to actually build CLI on centos.
This commit is contained in:
Sridhar Periyasamy 2015-12-15 18:15:31 -08:00
parent d17dff0647
commit 67ad2a8fab
6 changed files with 32 additions and 16 deletions

View file

@ -32,11 +32,10 @@ echo $DOTNET_BUILD_VERSION >> $STAGE2_DIR/.version
# Create Dnvm Package
$DIR/package-dnvm.sh
if [[ "$UNAME" == "Linux" ]]; then
if [[ "$OSNAME" == "ubuntu" ]]; then
# Create Debian package
$DIR/package-debian.sh
elif [[ "$UNAME" == "Darwin" ]]; then
elif [[ "$OSNAME" == "osx" ]]; then
# Create OSX PKG
$DIR/../../packaging/osx/package-osx.sh
fi