Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-updates > by-pkgid > 996a9aeb53a1e0b280652e1c24835b64 > scriptlet

npm-6.14.11-1.10.24.0.10.mga7.armv7hl.rpm

PRETRANS

<lua>
-- Remove all of the symlinks from the bundled npm node_modules directory
-- This scriptlet can be removed in Mageia 31
base_path = "/usr/lib/node_modules/npm/node_modules/"
d_st = posix.stat(base_path)
if d_st then
  for f in posix.files(base_path) do
    path = base_path..f
    st = posix.stat(path)
    if st and st.type == "link" then
      os.remove(path)
    end
  end
end