mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 20:27:58 +01:00
12 lines
229 B
Awk
12 lines
229 B
Awk
{ content = $1 ~ /^(content|skin|locale)$/ }
|
|
content && $NF ~ /^[a-z]/ { $NF = "/" name "/" $NF }
|
|
content {
|
|
sub(/^\.\./, "", $NF);
|
|
$NF = "jar:chrome/" name ".jar!" $NF
|
|
}
|
|
{
|
|
sub("^\\.\\./common/", "", $NF)
|
|
print
|
|
}
|
|
|