Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Summary: Fix failures like https://www.internalfb.com/sandcastle/workflow/680043543734513129

Reviewed By: JakobDegen

Differential Revision: D51781234

fbshipit-source-id: fe0c2a8a123ae25b888b56a0e3c4f43a69903fa9
  • Loading branch information
Ian Childs authored and facebook-github-bot committed Dec 2, 2023
1 parent a14f211 commit bc3e757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prelude/python/tools/run_inplace_lite.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __run():
dirpath = os.path.dirname(os.path.realpath(__file__))

# Enable long path support on Windows
if os.name == "nt" and not dirpath.starswith(unc_prefix):
if os.name == "nt" and not dirpath.startswith(unc_prefix):
dirpath = unc_prefix + dirpath

# Save the variables that will be restored back into the environment by
Expand Down

0 comments on commit bc3e757

Please sign in to comment.