Files
amicho/ddmseoul/demo/wordpress-clone/pack_theme.sh
louiscklaw f2b7d287fa update,
2025-02-01 01:59:40 +08:00

12 lines
203 B
Bash

#!/usr/bin/env bash
DIST=$PWD/dist
mkdir -p $DIST
rm -rf $DIST/ddmseoul_theme.zip
pushd src/wp-content/themes/twentytwentyone-ddmseoul
rm -rf ./node_modules
zip -r $DIST/ddmseoul_theme.zip .
popd