diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2022-08-17 14:01:36 -0700 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2022-08-17 14:01:36 -0700 |
| commit | b3fdfb912c42f6a6d837e00bf71c59da753ea4ae (patch) | |
| tree | 5bd6243974600c2d5c335b8d8eb9b45c63ad2b57 /.github | |
| parent | 704a10a29e95d7ef787c1f7ccea3d4d5f5513c99 (diff) | |
macos release candidate: create symlink after download.
Otherwise we seem to get a full copy of the file!
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release-candidate.yml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.github/workflows/release-candidate.yml b/.github/workflows/release-candidate.yml index c536e5a74..3b4b829ac 100644 --- a/.github/workflows/release-candidate.yml +++ b/.github/workflows/release-candidate.yml @@ -112,11 +112,7 @@ jobs: mkdir -p ${DEST}/bin mkdir -p ${DEST}/share/man/man1 cp ~/.local/bin/pandoc ${DEST}/bin/ - SRCDIR=$(pwd) - cd ${DEST}/bin - strip pandoc - ln -s pandoc pandoc-server - cd ${SRCDIR} + strip ${DEST}/bin/pandoc cp man/pandoc.1 ${DEST}/share/man/man1/pandoc.1 cp man/pandoc-server.1 ${DEST}/share/man/man1/pandoc-server.1 ~/.local/bin/pandoc -s COPYING.md -Vpagetitle=License -o ${RESOURCES}/license.html |
