2020-05-21 06:30:41 +00:00
|
|
|
/*
|
2020-05-25 16:19:20 +00:00
|
|
|
Copyright 2020 Qiniu Cloud (qiniu.com)
|
2020-05-21 06:30:41 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package build
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
|
|
|
|
"github.com/otiai10/copy"
|
|
|
|
)
|
|
|
|
|
2020-06-12 09:51:10 +00:00
|
|
|
func (b *Build) cpGoModulesProject() {
|
|
|
|
for _, v := range b.Pkgs {
|
2020-05-21 06:30:41 +00:00
|
|
|
if v.Name == "main" {
|
2020-06-12 09:51:10 +00:00
|
|
|
dst := b.TmpDir
|
2020-05-21 06:30:41 +00:00
|
|
|
src := v.Module.Dir
|
|
|
|
|
|
|
|
if err := copy.Copy(src, dst); err != nil {
|
|
|
|
log.Printf("Failed to Copy the folder from %v to %v, the error is: %v ", src, dst, err)
|
|
|
|
}
|
|
|
|
break
|
|
|
|
} else {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|