feat(AndroidStudio): Init release 0.1.130.677228
- Based on JetBrains IntelliJ IDEA
This commit is contained in:
18
AndroidStudio/tools/chocolateyInstall.ps1
Normal file
18
AndroidStudio/tools/chocolateyInstall.ps1
Normal file
@@ -0,0 +1,18 @@
|
||||
$package = 'AndroidStudio'
|
||||
|
||||
try {
|
||||
$params = @{
|
||||
PackageName = $package;
|
||||
FileType = 'exe';
|
||||
#uses NSIS installer - http://nsis.sourceforge.net/Docs/Chapter3.html
|
||||
SilentArgs = '/S';
|
||||
Url = 'http://dl.google.com/android/studio/android-studio-bundle-130.677228-windows.exe';
|
||||
}
|
||||
|
||||
Install-ChocolateyPackage @params
|
||||
|
||||
Write-ChocolateySuccess $package
|
||||
} catch {
|
||||
Write-ChocolateyFailure $package "$($_.Exception.Message)"
|
||||
throw
|
||||
}
|
Reference in New Issue
Block a user