Skip to content

Commit

Permalink
Change structure of package
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamscached committed Dec 31, 2022
1 parent 7898ec5 commit 6df9dd2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@
1. Go to [the latest release page][6] and scroll to Assets section.
2. Download `say-something-VERSION-MASVERSION.zip` file for your current MAS
version.
3. Drag and drop `game/` folder from it into your DDLC folder.

**NOTE:** make sure you don't drag it *into `game`*!
3. Drag and drop `Submods` folder from it into your `game` folder.
4. You're all set!~

## 🏅 Special thanks
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ $Mod = "$Mod\$Name"

Copy-Item -Recurse $Dir\mod $Mod

Compress-Archive -Update -Path $Temp\game -DestinationPath $Build\$Package-$Version.zip
Compress-Archive -Update -Path $Temp\game\Submods -DestinationPath $Build\$Package-$Version.zip
Remove-Item -Recurse $Temp
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ mkdir -p "$mod"

cp -r "$dir/mod"/* "$mod"

(cd "$temp" || exit 1; find game | zip -9@q "$build/$package-$version.zip" && rm -rf "$temp")
(cd "$temp/game" || exit 1; find Submods | zip -9@q "$build/$package-$version.zip" && rm -rf "$temp")

0 comments on commit 6df9dd2

Please sign in to comment.