Skip to content

Commit

Permalink
Fix makefile for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Gleefre committed Jun 12, 2023
1 parent 2f41e77 commit eb05d95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ bundle: all
lin-bundle: bundle
cp run.sh $(APP)
cp run-editor.sh $(APP)
[ -f $(APP)/bin/libzstd.so.1.* ] && mv $(APP)/bin/libzstd.so.1.* $(APP)/bin/libzstd.so.1
if [ -f $(APP)/bin/libzstd.so.1.* ]; then mv $(APP)/bin/libzstd.so.1.* $(APP)/bin/libzstd.so.1; fi
if [ -f $(APP)/bin/libz.so.1.* ]; then mv $(APP)/bin/libz.so.1.* $(APP)/bin/libz.so.1; fi
zip -r $(APP)-lin $(APP)

win-bundle: bundle
Expand Down

0 comments on commit eb05d95

Please sign in to comment.