Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria committed Sep 5, 2019
1 parent fb2d66c commit 0bcde27
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ _ide*
.php_cs.cache

clover.xml
*.swp
11 changes: 8 additions & 3 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,20 @@ dist: clean
@echo "packaging..."
@mkdir Lychee-v$(VERSION)
@mkdir Lychee-v$(VERSION)/public
@mkdir Lychee-v$(VERSION)/public/dist
@mkdir Lychee-v$(VERSION)/public/docs
@mkdir Lychee-v$(VERSION)/public/img
@mkdir Lychee-v$(VERSION)/public/Lychee-front
@mkdir Lychee-v$(VERSION)/public/uploads
@mkdir Lychee-v$(VERSION)/public/uploads/small
@mkdir Lychee-v$(VERSION)/public/uploads/medium
@mkdir Lychee-v$(VERSION)/public/uploads/big
@mkdir Lychee-v$(VERSION)/public/uploads/thumb
@mkdir Lychee-v$(VERSION)/public/uploads/import
@mkdir Lychee-v$(VERSION)/public/sym
@cp -r public/dist Lychee-v$(VERSION)/public
@cp -r public/docs/* Lychee-v$(VERSION)/public/docs
@cp -r public/img/* Lychee-v$(VERSION)/public/img
@cp -r public/Lychee-front/images Lychee-v$(VERSION)/public/Lychee-front/images
@cp -r public/Lychee-front/scripts Lychee-v$(VERSION)/public/Lychee-front/scripts
@cp -r public/Lychee-front/styles Lychee-v$(VERSION)/public/Lychee-front/styles
Expand Down Expand Up @@ -51,16 +55,17 @@ dist: clean
@cp -r readme.md Lychee-v$(VERSION)
@cp -r server.php Lychee-v$(VERSION)
@cp -r version.md Lychee-v$(VERSION)
@rm Lychee-v$(VERSION)/storage/framework/sessions/*
@rm Lychee-v$(VERSION)/storage/framework/views/*
@rm Lychee-v$(VERSION)/storage/logs/*
@rm Lychee-v$(VERSION)/storage/framework/sessions/* 2> /dev/null || true
@rm Lychee-v$(VERSION)/storage/framework/views/* 2> /dev/null || true
@rm Lychee-v$(VERSION)/storage/logs/* 2> /dev/null || true
@touch Lychee-v$(VERSION)/storage/logs/laravel.log
@touch Lychee-v$(VERSION)/public/dist/user.css
@touch Lychee-v$(VERSION)/public/uploads/big/index.html
@touch Lychee-v$(VERSION)/public/uploads/small/index.html
@touch Lychee-v$(VERSION)/public/uploads/medium/index.html
@touch Lychee-v$(VERSION)/public/uploads/thumb/index.html
@touch Lychee-v$(VERSION)/public/uploads/import/index.html
@touch Lychee-v$(VERSION)/public/sym/index.html
@zip -r Lychee-v$(VERSION).zip Lychee-v$(VERSION)

contrib_add:
Expand Down
2 changes: 1 addition & 1 deletion version.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.0-alpha.1
4.0.0-beta.1

0 comments on commit 0bcde27

Please sign in to comment.