From 8d6df6d128628a9fae72ce5bb54cd6456109fca3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Lindqvist?= Date: Sun, 28 Sep 2014 22:53:56 +0200 Subject: [PATCH] tools.deploy.backend: with-variables need to be on the whole block --- basis/tools/deploy/backend/backend.factor | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/basis/tools/deploy/backend/backend.factor b/basis/tools/deploy/backend/backend.factor index b8ff64162a..6ab4de3bd2 100644 --- a/basis/tools/deploy/backend/backend.factor +++ b/basis/tools/deploy/backend/backend.factor @@ -119,11 +119,14 @@ DEFER: ?make-staging-image :: make-deploy-image ( vm image vocab config -- manifest ) make-boot-image - config [ bootstrap-profile ?make-staging-image ] with-variables - vocab "vocab-manifest-" prepend temp-file :> manifest-file - image vocab manifest-file bootstrap-profile deploy-command-line :> flags - vm flags run-factor - manifest-file parse-vocab-manifest-file ; + config [ + bootstrap-profile :> profile + vocab "vocab-manifest-" prepend temp-file :> manifest-file + image vocab manifest-file profile deploy-command-line :> flags + profile ?make-staging-image + vm flags run-factor + manifest-file parse-vocab-manifest-file + ] with-variables ; :: make-deploy-image-executable ( vm image vocab config -- manifest ) vm image vocab config make-deploy-image