mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
fix a silly problem with RequireByString.test.cpp depending on the repository being checked out as luau
This commit is contained in:
parent
9dc6f3033b
commit
a885998948
1 changed files with 1 additions and 7 deletions
|
@ -116,7 +116,7 @@ public:
|
|||
for (int i = 0; i < 20; ++i)
|
||||
{
|
||||
bool engineTestDir = isDirectory(luauDirAbs + "/Client/Luau/tests");
|
||||
bool luauTestDir = isDirectory(luauDirAbs + "/luau/tests/require");
|
||||
bool luauTestDir = isDirectory(luauDirAbs + "/tests/require");
|
||||
|
||||
if (engineTestDir || luauTestDir)
|
||||
{
|
||||
|
@ -125,12 +125,6 @@ public:
|
|||
luauDirRel += "/Client/Luau";
|
||||
luauDirAbs += "/Client/Luau";
|
||||
}
|
||||
else
|
||||
{
|
||||
luauDirRel += "/luau";
|
||||
luauDirAbs += "/luau";
|
||||
}
|
||||
|
||||
|
||||
if (type == PathType::Relative)
|
||||
return luauDirRel;
|
||||
|
|
Loading…
Add table
Reference in a new issue