X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/137df88bd2c7970900d44a953b92a483a626e92b..46c8775caa216d130b8fb8b1ceb568f4dc6d2717:/admin/org-synch.sh diff --git a/admin/org-synch.sh b/admin/org-synch.sh index 45000b8f5..79c551b66 100755 --- a/admin/org-synch.sh +++ b/admin/org-synch.sh @@ -2,12 +2,14 @@ # this script expects $1 to be the download directory and $2 to have org-synch.el -pkgname=`/usr/bin/curl -s http://orgmode.org/pkg/daily/|/usr/bin/perl -ne 'push @f, $1 if m/(org-\d{8}\.tar)/; END { @f = sort @f; print "$f[-1]\n"}'` +PATH=/bin:/usr/bin:/usr/local/bin + +pkgname=`curl -s http://orgmode.org/pkg/daily/|perl -ne 'push @f, $1 if m/(org-\d{8}\.tar)/; END { @f = sort @f; print "$f[-1]\n"}'` cd $1 -/usr/bin/wget -q http://orgmode.org/pkg/daily/$pkgname -O ${pkgname}-tmp +wget -q http://orgmode.org/pkg/daily/${pkgname} -O ${pkgname}-tmp if [ -f ${pkgname}-tmp ]; then - /bin/rm -f org*.tar - /bin/mv ${pkgname}-tmp $pkgname && \ - /usr/bin/emacs -batch -l $2/org-synch.el -f org-synch + rm -f org*.tar + mv ${pkgname}-tmp ${pkgname} && \ + emacs -batch -l $2/org-synch.el --eval "(org-synch \"${pkgname}\")" fi