mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-24 08:45:45 +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
|
#!/bin/bash -ex
|
||||||
|
|
||||||
# the UID for the container yuzu user is 1027
|
# the UID for the container yuzu user is 1027
|
||||||
sudo chown -R 1027 ./
|
docker run -u root -v $(pwd):/liftinstall -t yuzuemu/build-environments:linux-liftinstall /bin/bash /liftinstall/.travis/build.sh
|
||||||
docker run -v $(pwd):/liftinstall -t yuzuemu/build-environments:linux-liftinstall /bin/bash /liftinstall/.travis/build.sh
|
|
||||||
sudo chown -R $(id -u):$(id -g) ./
|
|
||||||
|
@ -312,7 +312,7 @@ mod natives {
|
|||||||
name: &str,
|
name: &str,
|
||||||
description: &str,
|
description: &str,
|
||||||
target: &str,
|
target: &str,
|
||||||
args: &[&str],
|
args: &str,
|
||||||
working_dir: &str,
|
working_dir: &str,
|
||||||
exe_path: &str,
|
exe_path: &str,
|
||||||
) -> Result<String, String> {
|
) -> Result<String, String> {
|
||||||
|
@ -100,7 +100,7 @@ impl Task for InstallDesktopShortcutTask {
|
|||||||
&shortcut.name,
|
&shortcut.name,
|
||||||
&shortcut.description,
|
&shortcut.description,
|
||||||
tool_path,
|
tool_path,
|
||||||
&["--launcher", exe_path],
|
&format!("--launcher \"{}\"", exe_path),
|
||||||
&starting_dir,
|
&starting_dir,
|
||||||
exe_path,
|
exe_path,
|
||||||
)?);
|
)?);
|
||||||
|
Loading…
Reference in New Issue
Block a user