Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
118e2f12c6 | |||
5382704aaa |
2 changed files with 9 additions and 2 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,2 +1,5 @@
|
||||||
.recipes
|
.recipes
|
||||||
*.zip
|
*.zip
|
||||||
|
LinuxServer
|
||||||
|
Windows
|
||||||
|
WindowsServer
|
6
makefile
6
makefile
|
@ -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/
|
Loading…
Reference in a new issue