forked from KolibriOS/kolibrios
Shell: cd command fixed
git-svn-id: svn://kolibrios.org@2323 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
57c28de885
commit
94572b7fe1
@ -37,10 +37,13 @@ if ( '/' == dir[0])
|
||||
else
|
||||
{
|
||||
strcpy(temp, cur_dir);
|
||||
if (cur_dir[strlen(cur_dir)-1] != '/')
|
||||
strcat(temp, "/");
|
||||
strcat(temp, dir);
|
||||
|
||||
if ( dir_check(temp) )
|
||||
{
|
||||
|
||||
strcpy(cur_dir, temp);
|
||||
return TRUE;
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
@echo off
|
||||
erase shell.kex lang.h
|
||||
erase lang.h
|
||||
echo #define LANG_ENG 1 > lang.h
|
||||
fasm start.asm start.o
|
||||
gcc -c shell.c
|
||||
|
@ -1,5 +1,5 @@
|
||||
@echo off
|
||||
erase shell.kex lang.h
|
||||
erase lang.h
|
||||
echo #define LANG_RUS 1 > lang.h
|
||||
fasm start.asm start.o
|
||||
gcc -c shell.c
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
#define SHELL_VERSION "0.4.9"
|
||||
#define SHELL_VERSION "0.4.91"
|
||||
|
||||
extern char PATH[256];
|
||||
extern char PARAM[256];
|
||||
|
Loading…
Reference in New Issue
Block a user