PackageManager just because
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
222 B

  1. package Filesystem
  2. import (
  3. "path/filepath"
  4. "strings"
  5. "PackageManager/Variables"
  6. )
  7. func StripRootDir(path string) string {
  8. return filepath.Join(
  9. "/",
  10. strings.TrimPrefix(
  11. path,
  12. Variables.RootDir,
  13. ),
  14. )
  15. }