From 8e59246a8b333cb70182e15b0faab35a7644ba2c Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Tue, 29 Mar 2016 23:46:34 -0700 Subject: [PATCH] tools.deploy.windows: Windows processes launch from relation to the executable that launches them. Therefore, we need to normalize the path for the "Hello World" binary since it's in the temp directory and not relative to the factor/ directory. --- 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 7b7e8bf885..a9992b6238 100755 --- a/basis/tools/deploy/windows/windows.factor +++ b/basis/tools/deploy/windows/windows.factor @@ -13,7 +13,7 @@ CONSTANT: app-icon-resource-id "APPICON" :: copy-vm ( executable bundle-name extension -- vm-path ) vm-path "." split1-last drop extension append bundle-name executable ".exe" append append-path - [ copy-file ] keep ; + [ copy-file ] keep normalize-path ; : create-exe-dir ( vocab bundle-name -- vm-path ) deploy-console? get ".com" ".exe" ? copy-vm ;