mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
This is resulting in an alarming warning appearing in the console: ``` pid(87021)/euid(501) is calling TIS/TSM in non-main thread environment, ERROR : This is NOT allowed. Please call TIS/TSM in main thread!!! ``` I've opened an issue on the library GitHub page for now.
11 lines
124 B
Bash
Executable File
11 lines
124 B
Bash
Executable File
#!/bin/sh
|
|
|
|
git submodule update --init
|
|
|
|
carthage update
|
|
|
|
cd libmpdclient && \
|
|
meson . output && \
|
|
ninja -C output
|
|
cd ..
|