-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Enhance Script Details and Add MacOS Compatibility with Documen…
…tation Updates (#1794) * feat: fix a portion of get path * feat: optimize mac deployment scripts
- Loading branch information
Showing
10 changed files
with
138 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Official Colors | ||
|
||
The openim logo has an official blue color. When reproducing the logo, please use the official color, when possible. | ||
|
||
## Pantone | ||
|
||
When possible, the Pantone color is preferred for print material. The official Pantone color is *285C*. | ||
|
||
## RGB | ||
|
||
When used digitally, the official RGB color code is *#326CE5*. |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package flag | ||
|
||
import ( | ||
goFlag "flag" | ||
"log" | ||
"strings" | ||
|
||
"github.com/spf13/pflag" | ||
) | ||
|
||
// WordSepNormalizeFunc changes all flags that contain "_" separators. | ||
func WordSepNormalizeFunc(f *pflag.FlagSet, name string) pflag.NormalizedName { | ||
if strings.Contains(name, "_") { | ||
return pflag.NormalizedName(strings.ReplaceAll(name, "_", "-")) | ||
} | ||
return pflag.NormalizedName(name) | ||
} | ||
|
||
// WarnWordSepNormalizeFunc changes and warns for flags that contain "_" separators. | ||
func WarnWordSepNormalizeFunc(f *pflag.FlagSet, name string) pflag.NormalizedName { | ||
if strings.Contains(name, "_") { | ||
normalizedName := strings.ReplaceAll(name, "_", "-") | ||
log.Printf("WARNING: flag %s has been deprecated and will be removed in a future version. Use %s instead.", name, normalizedName) | ||
return pflag.NormalizedName(normalizedName) | ||
} | ||
return pflag.NormalizedName(name) | ||
} | ||
|
||
// InitFlags normalizes, parses, then logs the command line flags. | ||
func InitFlags() { | ||
pflag.CommandLine.SetNormalizeFunc(WordSepNormalizeFunc) | ||
pflag.CommandLine.AddGoFlagSet(goFlag.CommandLine) | ||
} | ||
|
||
// PrintFlags logs the flags in the flagset. | ||
func PrintFlags(flags *pflag.FlagSet) { | ||
flags.VisitAll(func(flag *pflag.Flag) { | ||
log.Printf("FLAG: --%s=%q", flag.Name, flag.Value) | ||
}) | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package genutil | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"path/filepath" | ||
) | ||
|
||
// OutDir creates the absolute path name from path and checks path exists. | ||
// Returns absolute path including trailing '/' or error if path does not exist. | ||
func OutDir(path string) (string, error) { | ||
outDir, err := filepath.Abs(path) | ||
if err != nil { | ||
return "", err | ||
} | ||
|
||
stat, err := os.Stat(outDir) | ||
if err != nil { | ||
return "", err | ||
} | ||
|
||
if !stat.IsDir() { | ||
return "", fmt.Errorf("output directory %s is not a directory", outDir) | ||
} | ||
outDir += "/" | ||
return outDir, nil | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package genutil | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestValidDir(t *testing.T) { | ||
_, err := OutDir("./") | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
} | ||
|
||
func TestInvalidDir(t *testing.T) { | ||
_, err := OutDir("./nondir") | ||
if err == nil { | ||
t.Fatal("expected an error") | ||
} | ||
} | ||
|
||
func TestNotDir(t *testing.T) { | ||
_, err := OutDir("./genutils_test.go") | ||
if err == nil { | ||
t.Fatal("expected an error") | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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