Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
letmaik authored Sep 7, 2024
1 parent bcc3327 commit 1483b99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/install-macos-obs-virtual-cam.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ set -e -x

VERSION="28.0.2"

if [[ "$ARCH" == "arm64" ]]; then
if [[ "$PYTHON_ARCH" == "arm64" ]]; then
ARCH_MOUNT="Apple"
else
ARCH_MOUNT="Intel"
fi

DMG_FILENAME="obs-studio-${VERSION}-macos-${ARCH}.dmg"
DMG_FILENAME="obs-studio-${VERSION}-macos-${PYTHON_ARCH}.dmg"
DMG_URL="https://cdn-fastly.obsproject.com/downloads/${DMG_FILENAME}"
MOUNT_PATH="/Volumes/OBS-${VERSION}-macOS-${ARCH_MOUNT}"
INSTALL_PATH="/Library/CoreMediaIO/Plug-Ins/DAL"
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/install-miniconda.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function InstallMiniconda ($python_version, $architecture, $python_home) {
Write-Host $python_home "already exists, skipping."
return $false
}
if ($architecture -eq "32") {
if ($architecture -eq "x86") {
$platform_suffix = "x86"
} else {
$platform_suffix = "x86_64"
Expand Down

0 comments on commit 1483b99

Please sign in to comment.