mirror of
https://github.com/niess/python-appimage.git
synced 2026-03-14 04:10:15 +01:00
Add a which command for locating binary deps
This commit is contained in:
21
python_appimage/commands/which.py
Normal file
21
python_appimage/commands/which.py
Normal file
@@ -0,0 +1,21 @@
|
||||
import os
|
||||
|
||||
from ..utils import deps
|
||||
from ..utils.log import log
|
||||
|
||||
|
||||
__all__ = ['execute']
|
||||
|
||||
|
||||
def _unpack_args(args):
|
||||
'''Unpack command line arguments
|
||||
'''
|
||||
return (args.binary,)
|
||||
|
||||
|
||||
def execute(binary):
|
||||
'''Print the location of a binary dependency
|
||||
'''
|
||||
path = os.path.join(os.path.dirname(deps.PATCHELF), binary)
|
||||
if os.path.exists(path):
|
||||
print(path)
|
||||
Reference in New Issue
Block a user