@@ -789,7 +789,7 @@ func packageAgent(platforms []string, packagingFn func()) {
789
789
panic (err )
790
790
}
791
791
792
- // cope spec file for match
792
+ // copy spec file for match
793
793
specName := filepath .Base (f )
794
794
idx := strings .Index (specName , "-" + version )
795
795
if idx != - 1 {
@@ -818,15 +818,20 @@ func packageAgent(platforms []string, packagingFn func()) {
818
818
}
819
819
820
820
func copyComponentSpecs (componentName , versionedDropPath string ) (string , error ) {
821
- sourceSpecFile := filepath .Join ("specs" , componentName + specSuffix )
822
- targetPath := filepath .Join (versionedDropPath , componentName + specSuffix )
823
- err := devtools .Copy (sourceSpecFile , targetPath )
824
- if err != nil {
825
- return "" , errors .Wrapf (err , "failed copying spec file %q to %q" , sourceSpecFile , targetPath )
821
+ specFileName := componentName + specSuffix
822
+ targetPath := filepath .Join (versionedDropPath , specFileName )
823
+
824
+ if _ , err := os .Stat (targetPath ); err != nil {
825
+ // spec not present copy from local
826
+ sourceSpecFile := filepath .Join ("specs" , specFileName )
827
+ err := devtools .Copy (sourceSpecFile , targetPath )
828
+ if err != nil {
829
+ return "" , errors .Wrapf (err , "failed copying spec file %q to %q" , sourceSpecFile , targetPath )
830
+ }
826
831
}
827
832
828
833
// compute checksum
829
- return devtools .GetSHA512Hash (sourceSpecFile )
834
+ return devtools .GetSHA512Hash (targetPath )
830
835
}
831
836
832
837
func appendComponentChecksums (versionedDropPath string , checksums map [string ]string ) error {
0 commit comments