with -v show change directory.

This commit is contained in:
SANO Masatoshi 2020-03-21 21:20:28 +08:00
parent edf3f304e1
commit 962fc129f1
2 changed files with 2 additions and 0 deletions

View file

@ -55,6 +55,7 @@ int directory_exist_p (char* path) {
}
int change_directory(const char* path) {
cond_printf(1,"change_directory:%s\n",path);
return chdir(path);
}

View file

@ -41,6 +41,7 @@ int directory_exist_p (char* path) {
int change_directory(const char* path) {
cond_printf(1,"change_directory:%s\n",path);
return _chdir(path);
}