From 8bf9cbc2636d8892c8f63236d231e2aa00f2abbe Mon Sep 17 00:00:00 2001
From: Zygmunt Krynicki <zygmunt.krynicki@huawei.com>
Date: Mon, 6 Dec 2021 18:15:46 +0100
Subject: [PATCH] spread.yaml: simplify the project path

The original project path implicitly relied on the pre-modules semantics
of Go source code layout, where the default GOPATH ~/go contained all
the source code arranged in go import path directories.

Since we rely on Go modules, we don't need this structure and can build
from any location.

Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@huawei.com>
---
 spread.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/spread.yaml b/spread.yaml
index d455127..b44b78e 100644
--- a/spread.yaml
+++ b/spread.yaml
@@ -18,7 +18,7 @@ backends:
                 password: ubuntu
 
 # Set spread project path to the correct place under GOPATH
-path: /root/go/src/booting.oniroproject.org/distro/components/sysota
+path: /root/sysota
 
 exclude:
   # Exclude .cache which is used by GitLab CI jobs to bring in the qemu image.
-- 
GitLab