Package For Server
This commit is contained in:
parent
2b78820358
commit
c3e07efdbf
3 changed files with 10 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,2 +1,5 @@
|
||||||
.recipes
|
.recipes
|
||||||
*.zip
|
*.zip
|
||||||
|
LinuxServer
|
||||||
|
Windows
|
||||||
|
WindowsServer
|
|
@ -3,7 +3,7 @@
|
||||||
"Version": 1,
|
"Version": 1,
|
||||||
"VersionName": "1.0.0",
|
"VersionName": "1.0.0",
|
||||||
"GameVersion": ">=385279",
|
"GameVersion": ">=385279",
|
||||||
"SemVersion": "1.0.0",
|
"SemVersion": "1.0.1",
|
||||||
"FriendlyName": "DigitalStorageTweaks",
|
"FriendlyName": "DigitalStorageTweaks",
|
||||||
"Description": "Alters a few recipies for DigitalStorage to not include Project Parts",
|
"Description": "Alters a few recipies for DigitalStorage to not include Project Parts",
|
||||||
"Category": "Modding",
|
"Category": "Modding",
|
||||||
|
|
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