Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler committed Sep 16, 2024
1 parent 75ed232 commit b13a189
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const useExploreInstall = (): [(options: ExploreInstall) => Promise<void>, numbe
addText("! \x1b[31mInternal error!\x1b[0m");
break;
default:
addText("? Unknown code returned");
addText(`? Unknown code returned (${code}})`);
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/activitys/InstallTerminalV2Activity/hooks/useLines.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ const LinesProvider = (props: LinesProviderProps) => {
const _binaryNames = binaryNames.split(",");
for (const binaryName of _binaryNames) {
for (const folder of folders) {
const binaryPath = path.join(folder, binaryName);
const binaryPath = modFSParse(path.join(folder, binaryName));
if (SuFile.exist(binaryPath)) {
return `${binaryPath} ${args}`;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ const useLocalInstall = (): [(options: LocalInstall) => Promise<void>] => {
break;

default:
addText("- Unknown code returned");
addText(`? Unknown code returned (${code}})`);
break;
}
}
Expand Down

0 comments on commit b13a189

Please sign in to comment.