Browse Source

Add restore files (#149)

pull/156/head
Justin Kotalik 6 years ago
committed by GitHub
parent
commit
76df4e3f2b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      restore.cmd
  2. 6
      restore.sh

3
restore.cmd

@ -0,0 +1,3 @@
@ECHO OFF
SETLOCAL
PowerShell -NoProfile -NoLogo -ExecutionPolicy ByPass -Command "[System.Threading.Thread]::CurrentThread.CurrentCulture = ''; [System.Threading.Thread]::CurrentThread.CurrentUICulture = '';& '%~dp0build.ps1' -all -nobuild -restore %*; exit $LASTEXITCODE"

6
restore.sh

@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
"$DIR/build.sh" --all --restore --no-build "$@"
Loading…
Cancel
Save