mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 04:37:09 +00:00
9 lines
335 B
Bash
9 lines
335 B
Bash
#!/bin/bash -e -o pipefail
|
|
################################################################################
|
|
## File: install-rosetta.sh
|
|
## Desc: Install Rosetta
|
|
################################################################################
|
|
|
|
echo 'Installing Rosetta'
|
|
/usr/sbin/softwareupdate --install-rosetta --agree-to-license
|