18 lines
327 B
Bash
Executable File
18 lines
327 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
# tar -zcvf ./_archive/020_update_fix_edit_page_error.tar.gz \
|
|
# --exclude "node_modules" \
|
|
# --exclude ".next" \
|
|
# --exclude ".git" \
|
|
# ./project
|
|
|
|
rsync -avh \
|
|
--exclude ".next" \
|
|
--exclude "node_modules" \
|
|
--exclude ".git" \
|
|
. ../_archive/022_init_lesson_categories
|
|
|
|
echo "done"
|