Created
September 2, 2016 20:43
-
-
Save spinolacastro/cf81ec15a66ed6c49f56ff6d26a2cf55 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
shopt -s dotglob | |
echo "---> Installing application source..." | |
mv /tmp/src/* ./ | |
echo "---> Installing dependencies ..." | |
dotnet restore | |
echo "---> Building application from source ..." | |
dotnet build src/*/project.json | |
# Fix source directory permissions | |
fix-permissions ./ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment