Skip to content

Commit

Permalink
* devel-examples/vignette-example/create-example-file.R: Use absolut…
Browse files Browse the repository at this point in the history
…e paths.
  • Loading branch information
MLopez-Ibanez committed Dec 10, 2024
1 parent 89efb9b commit c05983c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions devel-examples/vignette-example/create-example-file.R
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@ setup_tsp_rue_2000 <- function() {
}

setup_acotsp <- function() {
download_uncompress("https://github.com/MLopez-Ibanez/ACOTSPQAP/archive/refs/heads/master.zip", exdir = "acotsp", flat= TRUE)
invoke_make("-C ./acotsp/ acotsp")
exdir <- fs::path_abs("acotsp")
download_uncompress("https://github.com/MLopez-Ibanez/ACOTSPQAP/archive/refs/heads/master.zip", exdir = exdir, flat= TRUE)
invoke_make(c("-C", exdir, "acotsp"))
}

setup_tsp_rue_2000()
Expand Down

0 comments on commit c05983c

Please sign in to comment.