Skip to content

Commit

Permalink
fix: relative link from epic-main to epic-git.<hash>_main
Browse files Browse the repository at this point in the history
  • Loading branch information
wdconinc committed Jun 25, 2024
1 parent b7665c1 commit b16a1d1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions containers/jug/dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,9 @@ COPY singularity.d /.singularity.d
## Fixup /opt/detector/epic-git.fcf90937193c983c0af2acf1251e01f2e2c3a259_main
RUN <<EOF
shopt -s nullglob
for detector in /opt/detector/epic-git.*_* ; do
ln -s ${detector} /opt/detector/epic-${detector/*_/}
cd /opt/detector
for detector in epic-git.*_* ; do
ln -s ${detector} epic-${detector/*_/}
done
EOF

Expand Down

0 comments on commit b16a1d1

Please sign in to comment.