Laupetin / OpenAssetTools

Open Source Modding Tools for old Call Of Duty games
https://openassettools.dev
GNU General Public License v3.0
85 stars 14 forks source link

fix: referencing files in cwd without dot slash #236

Closed Laupetin closed 3 weeks ago

Laupetin commented 3 weeks ago

Currently Unlinker cannot unlink a file when specified in the following way: ./Unlinker file.ff

It had to be specified in the following way: ./Unlinker ./file.ff with a ./ prefix.

This fixes that unintended behaviour to make the prefix no longer required.