diff --git a/programs/system/shell/globals.h b/programs/system/shell/globals.h index 720102957f..ff05cc52c1 100644 --- a/programs/system/shell/globals.h +++ b/programs/system/shell/globals.h @@ -1,5 +1,5 @@ -#define SHELL_VERSION "0.4.7" +#define SHELL_VERSION "0.4.8" extern char PATH[256]; extern char PARAM[256]; diff --git a/programs/system/shell/modules/module_executable.c b/programs/system/shell/modules/module_executable.c index de0e8a5962..f39b563075 100644 --- a/programs/system/shell/modules/module_executable.c +++ b/programs/system/shell/modules/module_executable.c @@ -26,7 +26,7 @@ if ( '/' == cmd[0]) // else { strcpy(exec, cur_dir); // проверяем файл в текущем каталоге - strcat(exec, "/"); // add slash +// strcat(exec, "/"); // add slash strcat(exec, cmd); if ( !file_check(exec) ) // проверяем существование файла @@ -43,9 +43,7 @@ else if ( script_check(exec) ) - { return script_run(exec, args); - } /* запуск программы */ result = program_run(exec, args);