mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireSync.git
synced 2026-05-31 23:54:06 +08:00
13 lines
312 B
Bash
Executable file
13 lines
312 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
. $(dirname $0)/prelude.bash
|
|
|
|
date=$1
|
|
[[ -n $date ]] || die "usage: $0 <date>"
|
|
|
|
checkout=$(mktemp -d $TMPDIR/plugins-svn.XXXXXXXX)
|
|
trap "rm -rf $checkout" EXIT
|
|
|
|
RUN cd $checkout
|
|
RUN svn co https://plugins.svn.wordpress.org --depth empty > /dev/null
|
|
RUN $BASE_DIR/bin/svn-changed-slugs $date
|