Skip to content

Commit

Permalink
removing Rhino 8 install arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
andyopayne committed Nov 8, 2023
1 parent 985d0a7 commit d4e02d8
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 d4e02d8

Please sign in to comment.