Skip to content

Commit

Permalink
Fix issue with missing images
Browse files Browse the repository at this point in the history
  • Loading branch information
devpro committed Oct 16, 2024
1 parent ef6b9b3 commit 69dda3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ tasks:
env:
DEST_FOLDER: '../dist'
cmds:
- mkdir -p $DEST_FOLDER
- cp -r assets $DEST_FOLDER/assets
- npm run build src/index.md -- --base presentations -o ../$DEST_FOLDER
- mkdir -p $DEST_FOLDER/assets/images
- cp -r assets/images/*.* $DEST_FOLDER/assets/images/
# - npm run build src/index.md -- --base presentations -o ../$DEST_FOLDER
- |
for file in "$SRC_FOLDER"/*.md; do
filename=$(basename "$file" .md)
Expand Down

0 comments on commit 69dda3c

Please sign in to comment.