Merge branch 'master' of git://factorcode.org/git/factor
commit
8638430185
|
@ -156,7 +156,7 @@ M: x86-backend %unbox-small-struct ( size -- )
|
|||
|
||||
M: x86-backend struct-small-enough? ( size -- ? )
|
||||
{ 1 2 4 8 } member?
|
||||
os { "linux" "solaris" } member? not and ;
|
||||
os { "linux" "netbsd" "solaris" } member? not and ;
|
||||
|
||||
M: x86-backend %return ( -- ) 0 %unwind ;
|
||||
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
IN: tools.deploy.tests
|
||||
USING: tools.test system io.files kernel tools.deploy.config
|
||||
tools.deploy.backend math sequences io.launcher arrays
|
||||
namespaces ;
|
||||
namespaces continuations ;
|
||||
|
||||
: shake-and-bake ( vocab -- )
|
||||
"." resource-path [
|
||||
[ "test.image" temp-file delete-file ] ignore-errors
|
||||
"resource:" [
|
||||
>r vm
|
||||
"test.image" temp-file
|
||||
r> dup deploy-config make-deploy-image
|
||||
|
|
|
@ -306,7 +306,7 @@ update_boot_images() {
|
|||
echo "Deleting old images..."
|
||||
rm checksums.txt* > /dev/null 2>&1
|
||||
rm $BOOT_IMAGE.* > /dev/null 2>&1
|
||||
rm staging.*.image > /dev/null 2>&1
|
||||
rm temp/staging.*.image > /dev/null 2>&1
|
||||
if [[ -f $BOOT_IMAGE ]] ; then
|
||||
get_url http://factorcode.org/images/latest/checksums.txt
|
||||
factorcode_md5=`cat checksums.txt|grep $BOOT_IMAGE|cut -f2 -d' '`;
|
||||
|
|
Loading…
Reference in New Issue