From c3e07efdbf31522626240310536a0bb4eb1b59c3 Mon Sep 17 00:00:00 2001 From: Merith Date: Mon, 31 Mar 2025 12:14:07 -0700 Subject: [PATCH] Package For Server --- .gitignore | 5 ++++- DigitalStorageTweaks.uplugin | 2 +- makefile | 6 +++++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d62ecf8..42c2a95 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ .recipes -*.zip \ No newline at end of file +*.zip +LinuxServer +Windows +WindowsServer \ No newline at end of file diff --git a/DigitalStorageTweaks.uplugin b/DigitalStorageTweaks.uplugin index fd1db53..3cc1b36 100644 --- a/DigitalStorageTweaks.uplugin +++ b/DigitalStorageTweaks.uplugin @@ -3,7 +3,7 @@ "Version": 1, "VersionName": "1.0.0", "GameVersion": ">=385279", - "SemVersion": "1.0.0", + "SemVersion": "1.0.1", "FriendlyName": "DigitalStorageTweaks", "Description": "Alters a few recipies for DigitalStorage to not include Project Parts", "Category": "Modding", diff --git a/makefile b/makefile index 3f317ad..4cf4348 100644 --- a/makefile +++ b/makefile @@ -2,4 +2,8 @@ ZIP_NAME = DigitalStorageTweaks.zip FILES = ./ContentLib ./DigitalStorageTweaks.uplugin all: - 7z a -r $(ZIP_NAME) $(FILES) \ No newline at end of file + 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/ \ No newline at end of file