Skip to content

Commit

Permalink
Fix top level directory in zip archive
Browse files Browse the repository at this point in the history
  • Loading branch information
niknetniko committed Aug 9, 2019
1 parent 899279c commit 32343b3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion generate-ctan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ if [[ ${EXCLUDE_TDS} = false ]]; then
cp ugent2016.tds.zip ${out}
fi

zip --filesync -r ugent2016.zip $out/*
cd "$out" || exit
zip --filesync -r ../ugent2016.zip *
cd ..

if [[ "$REMOVE_OUT" = true ]]; then
rm -rf ${out}
Expand Down

0 comments on commit 32343b3

Please sign in to comment.