mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-24 04:15:44 +01:00
general: Housekeeping
Keep up with updates to the compiler.
This commit is contained in:
parent
f809e6cb23
commit
e6600e3b17
@ -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
|
||||
|
@ -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> {
|
||||
|
@ -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,
|
||||
)?);
|
||||
|
Loading…
Reference in New Issue
Block a user