Skip to content

Commit 262217e

Browse files
committed
Try to fix build.
Signed-off-by: Thomas Rohloff <[email protected]>
1 parent f3188d4 commit 262217e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RUN mkdir -p /usr/share/man/man1 /usr/share/man/man2 && \
1717
git clone --recursive https://github.com/yawut/libromfs-wiiu --single-branch && \
1818
cd libromfs-wiiu && \
1919
make -j$(nproc) && \
20-
make install
20+
make install && \
21+
git config --global --add safe.directory /project
2122

2223
WORKDIR /project

Diff for: src/installer.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ bool install(const char *game, bool hasDeps, NUSDEV dev, const char *path, bool
307307
debugPrintf("Removing installation files...");
308308
FSError ret =
309309
#endif
310-
removeDirectory(path);
310+
removeDirectory(path);
311311
#ifdef NUSSPLI_DEBUG
312312
if(ret != FS_ERROR_OK)
313313
debugPrintf("Couldn't remove installation files from SD card: %s", translateFSErr(ret));

0 commit comments

Comments
 (0)