diff --git a/src/CoreOS-xhyve UI/CoreOS-xhyve UI-Info.plist b/src/CoreOS-xhyve UI/CoreOS-xhyve UI-Info.plist
index d1662ae..934e8fb 100644
--- a/src/CoreOS-xhyve UI/CoreOS-xhyve UI-Info.plist
+++ b/src/CoreOS-xhyve UI/CoreOS-xhyve UI-Info.plist
@@ -19,11 +19,11 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 0.1.4
+ 0.1.5
CFBundleSignature
????
CFBundleVersion
- 27
+ 29
LSApplicationCategoryType
public.app-category.utilities
LSMinimumSystemVersion
diff --git a/src/CoreOS-xhyve_UI_VM.command b/src/CoreOS-xhyve_UI_VM.command
index 3b72c92..4a57dc0 100755
--- a/src/CoreOS-xhyve_UI_VM.command
+++ b/src/CoreOS-xhyve_UI_VM.command
@@ -23,6 +23,7 @@ cd ~/coreos-xhyve-ui/cloud-init
# Start VM
echo "Waiting for VM to boot up... "
cd ~/coreos-xhyve-ui
+export XHYVE=~/coreos-xhyve-ui/bin/xhyve
"${res_folder}"/bin/coreos-xhyve-run -f custom.conf coreos-xhyve-ui
# Stop webserver
diff --git a/src/coreos-xhyve-install.command b/src/coreos-xhyve-install.command
index bf09858..0572730 100755
--- a/src/coreos-xhyve-install.command
+++ b/src/coreos-xhyve-install.command
@@ -19,6 +19,7 @@
# copy files to ~/coreos-xhyve-ui/bin
cp -f "$1"/files/* ~/coreos-xhyve-ui/bin
+ cp -f "$1"/bin/xhyve ~/coreos-xhyve-ui/bin
chmod 755 ~/coreos-xhyve-ui/bin/*
# copy user-data
diff --git a/src/up.command b/src/up.command
index 84be27a..deca1c2 100755
--- a/src/up.command
+++ b/src/up.command
@@ -9,6 +9,9 @@
# get App's Resources folder
res_folder=$(cat ~/coreos-xhyve-ui/.env/resouces_path)
+# copy xhyve to bin folder
+cp -f "${res_folder}"/bin/xhyve ~/coreos-xhyve-ui/bin
+
# get VM IP
vm_ip=$(cat ~/coreos-xhyve-ui/.env/ip_address)