mirror of
https://github.com/Ellpeck/TinyLifeExampleMod.git
synced 2024-11-25 05:08:35 +01:00
11 lines
No EOL
293 B
Bash
11 lines
No EOL
293 B
Bash
#!/bin/bash
|
|
# move to the script directory
|
|
cd "$(dirname "$0")"
|
|
# build the mod
|
|
dotnet build
|
|
# zip the mod
|
|
cd ./bin/Debug/net5.0
|
|
file=$(find *.dll -printf %f)
|
|
dest=${file::-4}.zip
|
|
zip -FSr ../$dest * --exclude 'ref/*' --exclude '*.pdb' --exclude '*.deps.json'
|
|
echo Published to bin/Debug/$dest |