general: Housekeeping

Keep up with updates to the compiler.
This commit is contained in:
lat9nq 2022-07-28 16:39:35 -04:00
parent f809e6cb23
commit e6600e3b17
3 changed files with 3 additions and 5 deletions

View file

@ -1,6 +1,4 @@
#!/bin/bash -ex
# the UID for the container yuzu user is 1027
sudo chown -R 1027 ./
docker run -v $(pwd):/liftinstall -t yuzuemu/build-environments:linux-liftinstall /bin/bash /liftinstall/.travis/build.sh
sudo chown -R $(id -u):$(id -g) ./
docker run -u root -v $(pwd):/liftinstall -t yuzuemu/build-environments:linux-liftinstall /bin/bash /liftinstall/.travis/build.sh

View file

@ -312,7 +312,7 @@ mod natives {
name: &str,
description: &str,
target: &str,
args: &[&str],
args: &str,
working_dir: &str,
exe_path: &str,
) -> Result<String, String> {

View file

@ -100,7 +100,7 @@ impl Task for InstallDesktopShortcutTask {
&shortcut.name,
&shortcut.description,
tool_path,
&["--launcher", exe_path],
&format!("--launcher \"{}\"", exe_path),
&starting_dir,
exe_path,
)?);