12 lines
203 B
Bash
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
|