deploy-image-only ( vocab image -- ) (original) (raw)
deploy-image-only ( vocab image -- )
Factor handbook » Developer tools » Application deployment » Deploy tool usage
Prev: | deploy ( vocab -- ) |
---|
Inputs
vocab | a vocabulary specifier |
---|---|
image | a pathname |
Outputs
None
Word description
Deploys vocab, saving the deployed image to the location specified by image. This only builds the Factor image for the vocabulary; to create a complete packaged application, use deploy.
See also
deploy
Definition
USING: kernel system tools.deploy.backend
tools.deploy.config.editor ;
: deploy-image-only ( vocab image -- )
[ vm-path ] 2dip swap dup deploy-config make-deploy-image
drop ;