You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
Going off of https://learn.microsoft.com/en-us/dotnet/standard/io/file-path-formats the given warning on https://docs.modrinth.com/docs/modpacks/format_definition/#path that says to "make sure it doesn't contain
..
or start with a drive name (i.e.,[A-Z]:/
,[A-Z]:\
, and/
).", If implemented at face value, would still result in multiple bad file paths being permitted such as:\Program Files\Custom Utilities\StringFinder.exe
: A relative path from the root of the current drive.\\system07\C$\
: The root directory of the C: drive on system07. (A network drive/resource)\\.\C:\Test\Foo.txt
and\\?\C:\Test\Foo.txt
..\
This could be resolved by either adding
\
as a disallowed starting character and adding..\
, or promoting normalization checks insteadThe text was updated successfully, but these errors were encountered: