Skip to content

Commit

Permalink
fixed output argument in shell script
Browse files Browse the repository at this point in the history
  • Loading branch information
hamshkhawar committed Jan 8, 2024
1 parent 8605df8 commit 8ddfaa9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions utils/rxiv-download/run-plugin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@ datapath=$(readlink --canonicalize data)
echo ${datapath}

# Inputs
path=${datapath}/input
out_dir=${datapath}/out
rxiv="arXiv"
start="2023-12-16"


# #Show the help options
# #docker run polusai/rxiv-download-plugin:${version}

docker run -v ${datapath}:${datapath} \
polusai/rxiv-download-plugin:${version} \
--path ${path} \
--rxiv ${rxiv} \
--start ${start}
--start ${start} \
--outDir ${out_dir}

0 comments on commit 8ddfaa9

Please sign in to comment.