mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
* set -e and fix all the scripts * add source utils to finalize_vm script * change xcode version in postbuild script * fix for softwareupdates and for xcode version
13 lines
334 B
Bash
Executable File
13 lines
334 B
Bash
Executable File
#!/bin/bash -e -o pipefail
|
|
|
|
AZCOPY_DOWNLOAD_URL="https://aka.ms/downloadazcopy-v10-mac"
|
|
|
|
wget -O "$HOME/azcopy.zip" "$AZCOPY_DOWNLOAD_URL"
|
|
unzip azcopy.zip -d azcopy
|
|
AZCOPY_EXTRACTED=$(echo azcopy/azcopy*)
|
|
cp "$AZCOPY_EXTRACTED/azcopy" "/usr/local/bin/azcopy"
|
|
chmod +x "/usr/local/bin/azcopy"
|
|
|
|
echo "Done, cleaning up"
|
|
rm -rf azcopy*
|