getdirs.awk: restore regexp to original
Change-Id: I7f9714e1b0e079299c87b036dea8e91ffc701342
This commit is contained in:
parent
e176fa00ef
commit
f360500351
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@
|
|||
function dirname(file) \
|
||||
{
|
||||
# no need to worry about args that do not contain at least one "/"
|
||||
gsub(/\/[^\/]*+/, "", file)
|
||||
gsub(/\/[^\/]+$/, "", file)
|
||||
return file
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue