From: Kevin M. Rosenberg Date: Tue, 28 Sep 2004 06:20:21 +0000 (+0000) Subject: r10042: add umask to upload scripts X-Git-Tag: v0.3.2~11 X-Git-Url: http://git.kpe.io/?p=vcs-tree.git;a=commitdiff_plain;h=ff8d068c73d982f6228861c937771ccb864ad348 r10042: add umask to upload scripts --- diff --git a/Makefile b/Makefile index c51bb0c..4af7419 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ sources :=$(pkg).asd main.lisp loader.lisp package.lisp kmrcl-excerpt.lisp $(pkg): $(sources) $(MAKE) clean - sbcl --load "$(pkg).asd" --eval "(asdf:oos 'asdf:load-op '$(pkg))" --eval "(sb-ext:quit :unix-status 0)" + sbcl --core a --load "$(pkg).asd" --eval "(asdf:oos 'asdf:load-op '$(pkg))" --eval "(sb-ext:quit :unix-status 0)" clean: rm -f *.fasl $(pkg) diff --git a/debian/upload.sh b/debian/upload.sh index 7e4770a..f39e7b7 100755 --- a/debian/upload.sh +++ b/debian/upload.sh @@ -1,4 +1,4 @@ #!/bin/sh set -e -dup vcs-tree -Uftp.med-info.com -D/home/ftp/vcs-tree -C"/home/kevin/bin/remove-old-versions vcs-tree latest" -su $* +dup vcs-tree -Uftp.med-info.com -D/home/ftp/vcs-tree -C"(umask 022; /home/kevin/bin/remove-old-versions vcs-tree latest)" -su $*