From 45c64e62306eaf2d4eb5e5ca62a7abc45a8c1aae Mon Sep 17 00:00:00 2001 From: brl Date: Fri, 12 Jun 2015 13:26:42 -0400 Subject: [PATCH] put back the .unsafe prefix --- oz-init/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oz-init/init.go b/oz-init/init.go index 9bed76d..9b0adb3 100644 --- a/oz-init/init.go +++ b/oz-init/init.go @@ -247,7 +247,7 @@ func (st *initState) readXpraOutput(r io.ReadCloser) { } func (st *initState) launchApplication() { - cmd := exec.Command(st.profile.Path /*+ ".unsafe"*/) + cmd := exec.Command(st.profile.Path + ".unsafe") stdout, err := cmd.StdoutPipe() if err != nil { st.log.Warning("Failed to create stdout pipe: %v", err)