Skip to content

Commit

Permalink
Try this
Browse files Browse the repository at this point in the history
  • Loading branch information
cansavvy committed Jul 15, 2024
1 parent 4f71660 commit 7cf5dfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion base_ottr/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ COPY github_package_list.tsv .
RUN --mount=type=secret,id=github_token \
Rscript install_github.R \
--packages github_package_list.tsv \
--token /run/secrets/github_token
--token '/run/secrets/github_token'

WORKDIR /rocker-build/

Expand Down
2 changes: 1 addition & 1 deletion base_ottr/install_github.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ option_list <- list(
opt <- parse_args(OptionParser(option_list = option_list))

# Read in the token
token <- readLines(as.character(opt$tokens)[1])
token <- readLines(opt$tokens)

message(token)

Expand Down

0 comments on commit 7cf5dfb

Please sign in to comment.