This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func (sm SAPSystemsMap) GetSIDsString() string { | |
return getSIDsString(reflect.ValueOf(sm)) | |
} | |
func (sl SAPSystemsList) GetSIDsString() string { | |
return getSIDsString(reflect.ValueOf(sl)) | |
} | |
func getSIDsString(v reflect.Value) string { | |
var s []string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Clean", | |
"type": "shell", | |
"command": "make clean || true", | |
"group": "build" |