mirror of
https://github.com/sshuttle/sshuttle.git
synced 2025-01-22 05:49:09 +01:00
Use the new arguments from redo v0.10.
(apenwarr: also updates to the matching, latest minimal/do)
This commit is contained in:
parent
39425a03c5
commit
cba8b261c6
@ -1,6 +1,6 @@
|
||||
exec >&2
|
||||
if pandoc </dev/null 2>/dev/null; then
|
||||
pandoc -s -r markdown -w man -o $3 $1.md
|
||||
pandoc -s -r markdown -w man -o $3 $2.md
|
||||
else
|
||||
echo "Warning: pandoc not installed; can't generate manpages."
|
||||
redo-always
|
||||
|
2
src/do
2
src/do
@ -121,7 +121,7 @@ _do()
|
||||
fi
|
||||
[ ! -e "$DO_BUILT" ] || [ ! -d "$(dirname "$target")" ] ||
|
||||
: >>"$target.did"
|
||||
( _run_dofile "$base" "$ext" "$tmp.tmp" )
|
||||
( _run_dofile "$target" "$base" "$tmp.tmp" )
|
||||
rv=$?
|
||||
if [ $rv != 0 ]; then
|
||||
printf "do: %s%s\n" "$DO_DEPTH" \
|
||||
|
@ -3,9 +3,9 @@ redo-ifchange sources.list
|
||||
redo-ifchange Info.plist bits/runpython \
|
||||
$(while read name newname; do echo "$name"; done <sources.list)
|
||||
|
||||
rm -rf "$1.app"
|
||||
mkdir "$1.app" "$1.app/Contents"
|
||||
cd "$1.app/Contents"
|
||||
rm -rf "$2.app"
|
||||
mkdir "$2.app" "$2.app/Contents"
|
||||
cd "$2.app/Contents"
|
||||
|
||||
cp "$TOP/Info.plist" .
|
||||
|
||||
@ -18,11 +18,11 @@ cd "$TOP"
|
||||
while read name newname; do
|
||||
[ -z "$name" ] && continue
|
||||
: "${newname:=$name}"
|
||||
outname=$1.app/Contents/Resources/$newname
|
||||
outname=$2.app/Contents/Resources/$newname
|
||||
outdir=$(dirname "$outname")
|
||||
[ -d "$outdir" ] || mkdir "$outdir"
|
||||
cp "${name-$newname}" "$outname"
|
||||
done <sources.list
|
||||
|
||||
cd "$1.app"
|
||||
cd "$2.app"
|
||||
redo-ifchange $(find . -type f)
|
||||
|
@ -1,5 +1,5 @@
|
||||
exec >&2
|
||||
IFS="
|
||||
"
|
||||
redo-ifchange $1.app
|
||||
tar -czf $3 $1.app/
|
||||
redo-ifchange $2.app
|
||||
tar -czf $3 $2.app/
|
||||
|
@ -1,5 +1,5 @@
|
||||
exec >&2
|
||||
IFS="
|
||||
"
|
||||
redo-ifchange $1.app
|
||||
zip -q -r $3 $1.app/
|
||||
redo-ifchange $2.app
|
||||
zip -q -r $3 $2.app/
|
||||
|
@ -1,2 +1,2 @@
|
||||
redo-ifchange $1.xib
|
||||
ibtool --compile $3 $1.xib
|
||||
redo-ifchange $2.xib
|
||||
ibtool --compile $3 $2.xib
|
||||
|
Loading…
Reference in New Issue
Block a user