Skip to content

Commit 8e89dcc

Browse files
committed
Make setup.bat -> setup.ps1 and download Cygwin
Make this a ps1 file so that we can download different things for different repos, and have the GitHub action just call the script.
1 parent c1a3b47 commit 8e89dcc

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

setup.bat

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.ps1

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
$url="https://cygwin.com/setup-x86_64.exe"
2+
$dest="C:\setup-x86_64.exe"
3+
Invoke-WebRequest -Uri $url -OutFile $dest
4+
cmd /c "C:\setup-x86_64.exe -s https://cygwin.osuosl.org -q -P ruby,ruby-devel,gcc-core,make,git,libyaml-devel"

0 commit comments

Comments
 (0)