Skip to content

Commit

Permalink
Fix build_lib import issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiayuan-Gu committed May 30, 2023
1 parent b818f86 commit 97ce77a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions warp_maniskill/build_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
import os
import argparse

package_dir = os.path.join(os.path.dirname(__file__))
package_dir = os.path.normpath(package_dir)
if package_dir not in sys.path:
sys.path.append(package_dir)

import warp.config
import warp.build

Expand Down

0 comments on commit 97ce77a

Please sign in to comment.