Fixing PR13973

This commit is contained in:
Jay McCarthy 2013-08-20 11:00:08 -06:00
parent c56c72f64e
commit 4081ff0155
2 changed files with 8 additions and 2 deletions

View File

@ -338,6 +338,7 @@
(build-path pkg-dir "info.rkt")
(lambda (o)
(fprintf o "#lang info\n")
(write `(define collection 'multi) o)
(write `(define deps ',deps) o)))))
@ -348,7 +349,7 @@
(unless (file-exists? pkg-pth)
(printf "Packaging ~a\n" pkg-short)
(parameterize ([current-directory work])
(system (format "raco pkg create --format plt ~a" pkg-name))
(system (format "raco pkg create --format plt \"~a\"" pkg-name))
(rename-file-or-directory
(build-path work pkg-name.plt)
pkg-pth)

View File

@ -1,12 +1,17 @@
#!/bin/sh
# planet-compat
rsync -a --progress -h --delete --exclude root --exclude compiled --exclude doc ../../meta/pkg-index/ plt-etc:local/new-plt/pkgs/plt-services/meta/pkg-index/
rsync -a --progress -h --delete plt-etc:local/galaxy-roots/planet-compat/ planet-compat/root/
# official
rsync -a --progress -h --delete --exclude root --exclude compiled --exclude doc ../../meta/pkg-index/ plt-etc:local/galaxy/meta/pkg-index/
rsync -a --progress -h --delete --exclude root --exclude compiled --exclude doc ../../../../racket/collects/pkg/ plt-etc:local/galaxy/pkg/
rsync -a --progress -h --delete --exclude root --exclude compiled --exclude doc ../../../../pkgs/racket-pkgs/racket-test/tests/pkg plt-etc:local/galaxy/tests/pkg/
for i in official planet-compat ; do
for i in official ; do
rsync -a --progress -h --delete plt-etc:local/galaxy/meta/pkg-index/$i/root/ $i/root/
done