Skip to content

Commit

Permalink
Download files with deb and rpm extensions to packages subdirectory (h…
Browse files Browse the repository at this point in the history
  • Loading branch information
sbbroot committed Mar 16, 2022
1 parent c499ee0 commit 751351a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ def _download_packages(self):
os.chdir(self._cfg.script_path)

def _download_file(self, file: str):
self._tools.wget.download(file, directory_prefix=self._cfg.dest_files)
output_path: Path = self._cfg.dest_packages if file.endswith('.deb') else self._cfg.dest_files
self._tools.wget.download(file, directory_prefix=output_path)

def _download_grafana_dashboard(self, dashboard: str, output_file: Path):
self._tools.wget.download(dashboard, output_document=output_file)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@ def _download_packages(self):
destdir=self._cfg.dest_packages)

def _download_file(self, file: str):
self._tools.wget.download(file, directory_prefix=self._cfg.dest_files, additional_params=False)
output_path: Path = self._cfg.dest_packages if file.endswith('.rpm') else self._cfg.dest_files
self._tools.wget.download(file, directory_prefix=output_path, additional_params=False)

def _download_grafana_dashboard(self, dashboard: str, output_file: Path):
self._tools.wget.download(dashboard, output_document=output_file, additional_params=False)
Expand Down

0 comments on commit 751351a

Please sign in to comment.