love-demo2/dist.sh
2026-03-23 02:50:43 -05:00

12 lines
186 B
Bash

#!/bin/sh
set -eux
rm -rf dist/
mkdir dist/
[ -f "test.so" ] && cp test.so dist/
[ -f "test.dll" ] && cp test.dll dist/
cp conf.lua main.lua dist/
( cd dist/ ; zip -r ../test.zip . )