Skip to content

Commit

Permalink
setup-util-obs: fix obs v30 install failure
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Nov 21, 2023
1 parent 07b5b16 commit 3f749ff
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions commands/setup-util-obs
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
#!/usr/bin/env bash

# https://github.com/obsproject/obs-studio/releases
# OBS-Studio-29.1.2-Full-Installer-x64.exe
# obs-studio-29.1.2-macos-arm64.dmg
# obs-studio-29.1.2-macos-x86_64.dmg
# OBS-Studio-29.1.2.zip
# obs-studio_29.1.2-0obsproject1.focal_amd64.deb
# obs-studio_29.1.2-0obsproject1.jammy_amd64.deb
# obs-studio_29.1.2-0obsproject1.kinetic_amd64.deb
# obs-studio_29.1.2-0obsproject1.lunar_amd64.deb
# OBS-Studio-30.0-Full-Installer-x64.exe
# OBS-Studio-30.0.0-macOS-Apple-dSYMs.tar.xz
# OBS-Studio-30.0.0-macOS-Apple.dmg
# OBS-Studio-30.0.0-macOS-Intel-dSYMs.tar.xz
# OBS-Studio-30.0.0-macOS-Intel.dmg
# OBS-Studio-30.0.0-Ubuntu-x86_64-dbsym.ddeb
# OBS-Studio-30.0.0-Ubuntu-x86_64.deb
# OBS-Studio-30.0.zip
# obs-studio_30.0.0-0obsproject1.jammy_amd64.deb
# obs-studio_30.0.0-0obsproject1.lunar_amd64.deb
# obs-studio_30.0.0-0obsproject1.mantic_amd64.deb

function setup_util_obs() (
source "$DOROTHY/sources/bash.bash"
Expand Down Expand Up @@ -48,9 +51,9 @@ function setup_util_obs() (
arch="$(get-arch)"
if is-mac; then
if test "$arch" = 'a64'; then
add_download_app_option '-macos-arm64.dmg'
add_download_app_option '-macOS-Apple.dmg'
elif test "$arch" = 'x64'; then
add_download_app_option '-macos-x86_64.dmg'
add_download_app_option '-macOS-Intel.dmg'
fi
elif is-ubuntu && test "$arch" = 'x64'; then
add_deb_option ".$(get-ubuntu-release-name)_amd64.deb"
Expand Down

0 comments on commit 3f749ff

Please sign in to comment.