Skip to content

Instantly share code, notes, and snippets.

@spinolacastro
Created September 2, 2016 20:43
Show Gist options
  • Save spinolacastro/cf81ec15a66ed6c49f56ff6d26a2cf55 to your computer and use it in GitHub Desktop.
Save spinolacastro/cf81ec15a66ed6c49f56ff6d26a2cf55 to your computer and use it in GitHub Desktop.
#!/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