mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-04-02 11:01:52 -04:00
8 lines
182 B
Bash
Executable file
8 lines
182 B
Bash
Executable file
#!/bin/sh
|
|
|
|
APP=$(cd "$(dirname "0")"/;pwd)
|
|
hdiutil attach $TMPDIR/cemu_update/cemu.dmg
|
|
cp -rf /Volumes/Cemu/Cemu.app "$APP"
|
|
hdiutil detach /Volumes/Cemu/
|
|
|
|
open -n -a "$APP/Cemu.app"
|