rhdl 0.1.0.post1747055720__py3-none-any.whl → 0.1.0.post1749495974__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of rhdl might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rhdl
3
- Version: 0.1.0.post1747055720
3
+ Version: 0.1.0.post1749495974
4
4
  Summary: RHDL CLI module
5
5
  Home-page: https://gitlab.cee.redhat.com/rhdl/rhdl
6
6
  Author: Distributed CI team
@@ -1,17 +1,17 @@
1
- rhdl-0.1.0.post1747055720.dist-info/licenses/LICENSE,sha256=RVVnHNsitM_UrrOOZTEpvbjNHs-IZ4wgkeaWaYeNXRE,11337
1
+ rhdl-0.1.0.post1749495974.dist-info/licenses/LICENSE,sha256=RVVnHNsitM_UrrOOZTEpvbjNHs-IZ4wgkeaWaYeNXRE,11337
2
2
  rhdlcli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  rhdlcli/api.py,sha256=nyTh8uso5KeLW6GYK3kY76UVNWBhYomBml_dMYNd2cU,4054
4
4
  rhdlcli/cli.py,sha256=pFILpfTFON-5q89ZDVZWa4DfGiypvB-9lM5Ob_L_H08,3379
5
5
  rhdlcli/downloader.py,sha256=MQQ2w_xbb69iw_0cTJ7EiGa66edzB1sqgJfUrfL-8e8,1330
6
6
  rhdlcli/files.py,sha256=SMYUn0aI4V9yueV6S-ymmbIrFf_gVQa0VSWVC_vqxBg,1560
7
7
  rhdlcli/fs.py,sha256=tEO-5EujnTLmKN-IsH6Vj6ePISGOgHvgyUTQG0wYR7M,544
8
- rhdlcli/main.py,sha256=nb6HJu0-0duVlDtp9T6H6cYMcau8Bt9AcX6-4oLWivo,1110
8
+ rhdlcli/main.py,sha256=vKyxGWAp2dUpO5JSHJdKPvyZdJaMW3uqI-iMsr8JI9g,1111
9
9
  rhdlcli/options.py,sha256=RBumOmOnytI_niEjyXHcbJzM9IseQsg_zmKL6fhhxyw,1887
10
10
  rhdlcli/stats.py,sha256=MvwxMr4LAm3PM5qiEnuB8thUgzBolWPLKg6ql53QU_Y,786
11
11
  rhdlcli/validator.py,sha256=tuxTiqmDn84QFFfk95Wq54tNtAQQmhNvQGRsWJGdzww,874
12
12
  rhdlcli/version.py,sha256=kUR5RAFc7HCeiqdlX36dZOHkUI5wI6V_43RpEcD8b-0,22
13
- rhdl-0.1.0.post1747055720.dist-info/METADATA,sha256=qRqOJ4EU5VLuEEbtrso6TBPYxWE4He1rFfQDD9p-8KY,611
14
- rhdl-0.1.0.post1747055720.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
15
- rhdl-0.1.0.post1747055720.dist-info/entry_points.txt,sha256=JWiBdHm5nD1m3_XZR0QtIuPmuvsJKE-43YhQxCINb8w,43
16
- rhdl-0.1.0.post1747055720.dist-info/top_level.txt,sha256=1kLkHuRFxHGxPUkrCL28sF6wqXmu3IGhJT858T4XRaI,8
17
- rhdl-0.1.0.post1747055720.dist-info/RECORD,,
13
+ rhdl-0.1.0.post1749495974.dist-info/METADATA,sha256=uw2vubIm4BMrfTcJqHBlZSY9odhFQsO9WLf1vZ0hZKU,611
14
+ rhdl-0.1.0.post1749495974.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
15
+ rhdl-0.1.0.post1749495974.dist-info/entry_points.txt,sha256=JWiBdHm5nD1m3_XZR0QtIuPmuvsJKE-43YhQxCINb8w,43
16
+ rhdl-0.1.0.post1749495974.dist-info/top_level.txt,sha256=1kLkHuRFxHGxPUkrCL28sF6wqXmu3IGhJT858T4XRaI,8
17
+ rhdl-0.1.0.post1749495974.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.4.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
rhdlcli/main.py CHANGED
@@ -32,7 +32,7 @@ def catch_all_and_print(f):
32
32
  def main():
33
33
  arguments = parse_arguments(sys.argv[1:])
34
34
  exit_if_arguments_invalid(arguments)
35
- cwd = os.path.dirname(sys.argv[0])
35
+ cwd = os.path.realpath(os.getcwd())
36
36
  env_variables = dict(os.environ)
37
37
  options = build_options(cwd, arguments, env_variables)
38
38
  if options["command"] == "login":