Skip to content

Commit 499ccba

Browse files
Merge pull request #812 from adi-g15-ibm/feat-allow-usage-from-anywhere
Enable op-test to be used from anywhere
2 parents 8b9601c + a4af720 commit 499ccba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

OpTestConfiguration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ def __init__(self):
472472
self.cronus = OpTestCronus(self)
473473
self.args = []
474474
self.remaining_args = []
475-
self.basedir = os.path.dirname(sys.argv[0])
475+
self.basedir = os.path.abspath(os.path.dirname(__file__))
476476
self.signal_ready = False # indicator for properly initialized
477477
self.atexit_ready = False # indicator for properly initialized
478478
self.aes_print_helpers = True # Need state for locker_wait

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ After cloning FWTS see the README for pre-reqs and how-to,
7171
be sure to 'make install' after building to get the proper
7272
paths setup.
7373

74-
git clone git://kernel.ubuntu.com/hwe/fwts.git
74+
git clone https://github.com/fwts/fwts
7575

7676
It must also have (package names for Debian/Ubuntu systems):
7777

0 commit comments

Comments
 (0)