From f17fc68a7e8838eeea11996cc2d74c28644e0dfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Lindqvist?= Date: Sun, 21 Aug 2016 06:13:45 +0200 Subject: [PATCH] tools.deploy.windows: using an empty string seem to solve #1691 --- basis/tools/deploy/windows/windows.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/tools/deploy/windows/windows.factor b/basis/tools/deploy/windows/windows.factor index bb9605147d..ae77beab1f 100755 --- a/basis/tools/deploy/windows/windows.factor +++ b/basis/tools/deploy/windows/windows.factor @@ -33,7 +33,7 @@ M: windows deploy* [ drop embed-ico ] [ drop deployed-image-name ] [ drop namespace make-deploy-image-executable ] - [ nip "resource:" [ copy-resources ] [ copy-libraries ] 3bi ] + [ nip "" [ copy-resources ] [ copy-libraries ] 3bi ] [ nip open-directory-after-deploy? get [ open-file ] [ drop ] if ] } 2cleave ;