Skip to content

Commit

Permalink
Merge pull request #622 from mcneel/AndyPayne/RH78171
Browse files Browse the repository at this point in the history
removing Rhino 8 install arguments
  • Loading branch information
andyopayne committed Nov 8, 2023
2 parents 0afccf8 + d4e02d8 commit 2ee3d1d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file modified script/production/bootstrap_step-1.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions script/production/bootstrap_step-1/module_rhino.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ $rhinoSetup = "rhino_setup.exe"
Download $rhinoDownloadUrl $rhinoSetup

Write-Step 'Installing Rhino'
# automated install (https://wiki.mcneel.com/rhino/installingrhino/6)
Start-Process -FilePath $rhinoSetup -ArgumentList '-passive', '-norestart' -Wait
# automated install (https://wiki.mcneel.com/rhino/installingrhino/8)
Start-Process -FilePath $rhinoSetup -Wait
# delete installer
Remove-Item $rhinoSetup
# print installed version number
Expand Down
4 changes: 2 additions & 2 deletions script/production/module_update_rhino.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ try {
# TODO: print rhino version

Write-Step 'Installing Rhino'
# automated install (https://wiki.mcneel.com/rhino/installingrhino/6)
Start-Process -FilePath $rhinoSetup -ArgumentList '-passive', '-norestart' -Wait
# automated install (https://wiki.mcneel.com/rhino/installingrhino/8)
Start-Process -FilePath $rhinoSetup -Wait
# delete installer
Remove-Item $rhinoSetup
}finally {}

0 comments on commit 2ee3d1d

Please sign in to comment.