1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-07 20:17:34 +00:00

Shell: Do not treat the absence of an init script as an error

This commit is contained in:
AnotherTest 2020-07-05 19:27:37 +04:30 committed by Andreas Kling
parent e83c36d053
commit 6d17fe38a4
3 changed files with 6 additions and 5 deletions

View file

@ -146,8 +146,8 @@ int main(int argc, char** argv)
String file_path = Shell::init_file_path;
if (file_path.starts_with('~'))
file_path = shell->expand_tilde(file_path);
if (!shell->run_file(file_path)) {
fprintf(stderr, "Shell: Failed to execute init file '%s'\n", Shell::init_file_path);
if (Core::File::exists(file_path)) {
shell->run_file(file_path, false);
}
}