2016-07-31 08:19:28 +01:00
|
|
|
@echo on
|
|
|
|
choco install -y firefox googlechrome wget notepadplusplus sublimetext3
|
2016-07-30 20:24:10 +01:00
|
|
|
|
2016-07-30 11:38:29 +01:00
|
|
|
wget -c https://cygwin.com/setup-x86_64.exe
|
2016-08-05 12:44:57 +01:00
|
|
|
setup-x86_64.exe -R "C:\cygwin64" -s http://cygwin.netbet.org/ -q -g -P curl,zsh,git,vim,wget,xz,tar,gawk,bzip2,subversion,zlib,fontconfig,clang,mono,monodevelop,gtksharp,visualstudiocode,microsoft-build-tools,visualstudio2015community,p4merge,dotnet4.5
|
2016-07-30 20:24:10 +01:00
|
|
|
|
2016-08-04 10:21:31 +01:00
|
|
|
set script_path=%~dp0
|
|
|
|
set repo_path=%script_path%\..\
|
2016-07-31 08:19:28 +01:00
|
|
|
set bash=c:\cygwin64\bin\bash.exe --login -c
|
2016-08-04 10:21:31 +01:00
|
|
|
|
2016-07-31 08:19:28 +01:00
|
|
|
for /f "delims=" %%A in ('%bash% "cd `cygpath $HOMEPATH`/dev/dotfiles && git rev-parse --abbrev-ref HEAD"') do set "branch=%%A"
|
|
|
|
%bash% 'echo "branch is $branch"'
|
|
|
|
%bash% "cp -vr `cygpath $HOMEPATH`/.ssh $HOME/"
|
2016-08-04 10:21:31 +01:00
|
|
|
%bash% "export OUTER_CLONE=`cygpath $repo_path` && $script_path/build_insider.sh"
|