Skip to content

Commit

Permalink
Add NOTICE.txt to the distribution file
Browse files Browse the repository at this point in the history
  • Loading branch information
matsuo committed Feb 12, 2018
1 parent d10bb7e commit d66dd6e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
21 changes: 12 additions & 9 deletions Makefile
Expand Up @@ -46,24 +46,27 @@ build-windows:
dist: deps build
cd $(DIST_DIR) && \
mv $(LINUX_DIR) $(DIST_LINUX_DIR) && \
cp ../LICENSE.txt $(DIST_LINUX_DIR) && \
cp ../README.md $(DIST_LINUX_DIR)/ && \
cp ../release-notes.txt $(DIST_LINUX_DIR)/ && \
cp -p ../LICENSE.txt $(DIST_LINUX_DIR)/ && \
cp -p ../NOTICE.txt $(DIST_LINUX_DIR)/ && \
cp -p ../README.md $(DIST_LINUX_DIR)/ && \
cp -p ../release-notes.txt $(DIST_LINUX_DIR)/ && \
tar -zcf $(DIST_LINUX_DIR).tar.gz $(DIST_LINUX_DIR) && \
cd ..

cd $(DIST_DIR) && \
mv $(MACOS_DIR) $(DIST_MACOS_DIR) && \
cp ../LICENSE.txt $(DIST_MACOS_DIR) && \
cp ../README.md $(DIST_MACOS_DIR)/ && \
cp ../release-notes.txt $(DIST_MACOS_DIR)/ && \
cp -p ../LICENSE.txt $(DIST_MACOS_DIR)/ && \
cp -p ../NOTICE.txt $(DIST_MACOS_DIR)/ && \
cp -p ../README.md $(DIST_MACOS_DIR)/ && \
cp -p ../release-notes.txt $(DIST_MACOS_DIR)/ && \
zip -r $(DIST_MACOS_DIR).zip $(DIST_MACOS_DIR) && \
cd ..

cd $(DIST_DIR) && \
mv $(WINDOWS_DIR) $(DIST_WINDOWS_DIR) && \
cp ../LICENSE.txt $(DIST_WINDOWS_DIR) && \
cp ../README.md $(DIST_WINDOWS_DIR)/ && \
cp ../release-notes.txt $(DIST_WINDOWS_DIR)/ && \
cp -p ../LICENSE.txt $(DIST_WINDOWS_DIR)/ && \
cp -p ../NOTICE.txt $(DIST_WINDOWS_DIR)/ && \
cp -p ../README.md $(DIST_WINDOWS_DIR)/ && \
cp -p ../release-notes.txt $(DIST_WINDOWS_DIR)/ && \
zip -r $(DIST_WINDOWS_DIR).zip $(DIST_WINDOWS_DIR) && \
cd ..
1 change: 1 addition & 0 deletions release-notes.txt
Expand Up @@ -4,6 +4,7 @@ This software is distributed under the Apache License, Version 2.0, see LICENSE.

Version: 0.9.1 (in development)
- Add error messages for the FileMaker error code 10006 and 10908.
- Add NOTICE.txt to the distribution file.
- [BUG FIX] Fix logging out process.

Version: 0.9.0 (beta)
Expand Down

0 comments on commit d66dd6e

Please sign in to comment.