Rework development page: Pre-build, Build, Populate.
[src/xds/xds-server.git] / lib / crosssdk / sdk.go
index 9aeec90..5a5770d 100644 (file)
@@ -48,6 +48,6 @@ func NewCrossSDK(path string) (*SDK, error) {
 }
 
 // GetEnvCmd returns the command used to initialized the environment
-func (s *SDK) GetEnvCmd() string {
-       return ". " + s.EnvFile
+func (s *SDK) GetEnvCmd() []string {
+       return []string{"source", s.EnvFile}
 }