mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireSync.git
synced 2026-05-30 23:44:03 +08:00
16 lines
371 B
Bash
Executable file
16 lines
371 B
Bash
Executable file
#!/bin/bash
|
|
|
|
. $(dirname $0)/prelude.bash
|
|
|
|
date=$1
|
|
[[ -n $date ]] || die "usage: $0 <date>"
|
|
|
|
ymd=$(php -r "echo date('Y-m-d', strtotime('$date'));")
|
|
tmp=${TMPDIR:-/tmp}
|
|
|
|
checkout=$(mktemp -d $tmp/themes-svn.XXXXXXXX)
|
|
trap "rm -rf $checkout" EXIT
|
|
|
|
RUN cd $checkout
|
|
RUN svn co https://themes.svn.wordpress.org --depth empty > /dev/null
|
|
RUN $base/bin/svn-changed-slugs $ymd
|