Compare commits

...

2 commits
v1.1.0 ... main

Author SHA1 Message Date
118e2f12c6 Update .gitignore 2025-04-18 23:13:10 +01:00
5382704aaa Update makefile 2025-04-18 23:12:58 +01:00
2 changed files with 9 additions and 2 deletions

5
.gitignore vendored
View file

@ -1,2 +1,5 @@
.recipes .recipes
*.zip *.zip
LinuxServer
Windows
WindowsServer

View file

@ -2,4 +2,8 @@ ZIP_NAME = DigitalStorageTweaks.zip
FILES = ./ContentLib ./DigitalStorageTweaks.uplugin FILES = ./ContentLib ./DigitalStorageTweaks.uplugin
all: all:
7z a -r $(ZIP_NAME) $(FILES) mkdir -p Windows WindowsServer LinuxServer
cp -r $(FILES) Windows/
cp -r $(FILES) WindowsServer/
cp -r $(FILES) LinuxServer/
7z a -r $(ZIP_NAME) Windows/ LinuxServer/ WindowsServer/