diff options
| author | Bryan Galdrikian <[email protected]> | 2019-05-03 00:25:46 -0700 |
|---|---|---|
| committer | Bryan Galdrikian <[email protected]> | 2019-05-03 00:25:46 -0700 |
| commit | 74b64a27f8e07b1b0b47b809b1a060518fa11a97 (patch) | |
| tree | 34cca01711be56892c149706f02ba7358d87ec54 /buildtools/packman/packmanapi.py | |
| parent | Fixing chunk reorder bug in BlastTool, when importing a prefractured mesh (diff) | |
| download | blast-1.1.5_pre1.tar.xz blast-1.1.5_pre1.zip | |
Blast SDK 1.1.5 prerelease #1v1.1.5_pre1
Diffstat (limited to 'buildtools/packman/packmanapi.py')
| -rwxr-xr-x | buildtools/packman/packmanapi.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/buildtools/packman/packmanapi.py b/buildtools/packman/packmanapi.py deleted file mode 100755 index 76e20d0..0000000 --- a/buildtools/packman/packmanapi.py +++ /dev/null @@ -1,16 +0,0 @@ -import os
-import sys
-
-
-def get_packman_module_dir():
- root_dir = os.environ['PM_PACKAGES_ROOT']
- common_dir = '4.0.1-common'
- module_dir = os.path.join(root_dir, 'packman', common_dir)
- return module_dir
-
-
-sys.path.insert(0, get_packman_module_dir())
-from packman import pack
-from packman import push
-from packager import get_package_filename
-from packager import create_package_from_file_list
|