From 3f845c4a3bb5681e472f3d44a98b4f102bc7f097 Mon Sep 17 00:00:00 2001 From: Albom Date: Fri, 19 Aug 2011 11:47:20 +0000 Subject: [PATCH] SHELL: .shell script runs from the current dir git-svn-id: svn://kolibrios.org@2077 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/system/shell/globals.h | 2 +- programs/system/shell/modules/module_executable.c | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) 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);