mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
9 lines
239 B
Go
9 lines
239 B
Go
|
package gcs
|
||
|
|
||
|
import "path"
|
||
|
|
||
|
// GetTargetFolder calculates the target folder in GCS bucket
|
||
|
func GetTargetFolder(folderPath string, stepResultType string, subFolder string) string {
|
||
|
return path.Join(folderPath, stepResultType, subFolder)
|
||
|
}
|