We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bdb244 commit 3c39df2Copy full SHA for 3c39df2
qiling/core.py
@@ -123,7 +123,7 @@ def __init__(
123
self._ostype = arch_os_convert(self._archtype)
124
else:
125
self._ostype = ostype_convert(self._ostype.lower())
126
-
+
127
if self._code == None:
128
self._code = "qiling"
129
if self._argv is None:
@@ -139,7 +139,7 @@ def __init__(
139
if not os.path.exists(str(self._argv[0])):
140
raise QlErrorFileNotFound("Target binary not found: %s" %(self._argv[0]))
141
if not os.path.exists(self._rootfs):
142
- raise QlErrorFileNotFound("Target rootfs not found")
+ raise QlErrorFileNotFound("Target rootfs not found: %s" %(self._rootfs))
143
144
self._path = (str(self._argv[0]))
145
self._targetname = ntpath.basename(self._argv[0])
0 commit comments