Skip to content

Commit

Permalink
Adding some fixes for .net core support
Browse files Browse the repository at this point in the history
  • Loading branch information
stefandevo committed Apr 30, 2017
1 parent 980d378 commit cc49ae4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ workflows:
# if you want to share this step into a StepLib
- MY_STEPLIB_REPO_FORK_GIT_URL: https://github.com/cake-build/bitrise-steplib.git
- STEP_ID_IN_STEPLIB: cakebuild
- STEP_GIT_VERION_TAG_TO_SHARE: 1.0.2
- STEP_GIT_VERION_TAG_TO_SHARE: 1.0.3
- STEP_GIT_CLONE_URL: https://github.com/cake-build/bitrise-cake-step.git
description: |-
If this is the first time you try to share a Step you should
Expand Down
6 changes: 6 additions & 0 deletions step.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ if [ ${dotnetcore} == "yes" ]
then
echo "Installing .net core"

brew update
brew install openssl
mkdir -p /usr/local/lib
ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/
ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/

wget https://raw.githubusercontent.com/dotnet/cli/rel/1.0.1/scripts/obtain/dotnet-install.sh
chmod +x dotnet-install.sh
./dotnet-install.sh
Expand Down

0 comments on commit cc49ae4

Please sign in to comment.