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
mkdir MyIcon.iconset | |
sips -z 16 16 Icon1024.png --out MyIcon.iconset/icon_16x16.png | |
sips -z 32 32 Icon1024.png --out MyIcon.iconset/[email protected] | |
sips -z 32 32 Icon1024.png --out MyIcon.iconset/icon_32x32.png | |
sips -z 64 64 Icon1024.png --out MyIcon.iconset/[email protected] | |
sips -z 128 128 Icon1024.png --out MyIcon.iconset/icon_128x128.png | |
sips -z 256 256 Icon1024.png --out MyIcon.iconset/[email protected] | |
sips -z 256 256 Icon1024.png --out MyIcon.iconset/icon_256x256.png | |
sips -z 512 512 Icon1024.png --out MyIcon.iconset/[email protected] | |
sips -z 512 512 Icon1024.png --out MyIcon.iconset/icon_512x512.png |
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
// Utility functions used to search up through directories for | |
// specific files. | |
package traverse | |
import ( | |
"fmt" | |
"io/ioutil" | |
"path/filepath" | |
) |
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
package filename | |
import ( | |
"fmt" | |
"runtime" | |
"strings" | |
"github.com/sirupsen/logrus" | |
) |
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
// Wrap returns a new function which executes HandlerFunc before panicking. | |
func Wrap(fn func()) func() { | |
return func() { | |
// handle panics | |
defer func() { | |
if err := recover(); err != nil { | |
HandlerFunc(err) | |
pnic(err) | |
} | |
}() |
OlderNewer