Skip to content

Commit

Permalink
Fix bug around new Thorat Repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBakerEffendi committed Dec 8, 2024
1 parent 49d6fb2 commit 15934e7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ class ThoratDownloader(datasetDir: File) extends DatasetDownloader(datasetDir) w
override val benchmarkName = s"Thorat Python v$version"

override protected val benchmarkUrl: URL = URI(
s"https://github.com/DavidBakerEffendi/benchmark-for-taint-analysis-tools-for-python/archive/refs/tags/v$version.zip"
s"https://github.com/DavidBakerEffendi/thorat/archive/refs/tags/v$version.zip"
).toURL
override protected val benchmarkFileName: String = s"benchmark-for-taint-analysis-tools-for-python-$version"
override protected val benchmarkFileName: String = s"thorat-$version"
override protected val benchmarkBaseDir: File = datasetDir / benchmarkFileName

override def initialize(): Try[File] = Try {
Expand Down

0 comments on commit 15934e7

Please sign in to comment.