diff options
| author | Xe Iaso <me@xeiaso.net> | 2024-11-25 15:24:40 -0500 |
|---|---|---|
| committer | Xe Iaso <me@xeiaso.net> | 2024-11-25 15:24:40 -0500 |
| commit | 63d437ff65e1be3a19a08ba10208a8b968e1b6ce (patch) | |
| tree | 10691d4276576b4343f715d2ceb1ed8703b47fc7 /cmd | |
| parent | 64d9eeff806dc7d6e094dc6be88606d0266ae13f (diff) | |
| download | xesite-63d437ff65e1be3a19a08ba10208a8b968e1b6ce.tar.xz xesite-63d437ff65e1be3a19a08ba10208a8b968e1b6ce.zip | |
lume/notes: add go pointer conversion note
Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/fabricate-generation/main.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/cmd/fabricate-generation/main.go b/cmd/fabricate-generation/main.go index c77591d..fe78ce4 100644 --- a/cmd/fabricate-generation/main.go +++ b/cmd/fabricate-generation/main.go @@ -29,7 +29,7 @@ import ( var ( bucketName = flag.String("bucket-name", "xesite", "Name of the S3 bucket to upload to") githubSHA = flag.String("github-sha", "", "GitHub SHA to use for the site") - miURL = flag.String("mimi-announce-url", "", "Mi url (named mimi-announce-url for historical reasons)") + miURL = flag.String("mimi-announce-url", "", "Mi url") patreonSaasProxyURL = flag.String("patreon-saasproxy-url", "http://xesite-patreon-saasproxy.flycast", "URL to use for the patreon saasproxy") siteURL = flag.String("site-url", "https://xeiaso.net/", "URL to use for the site") ) @@ -52,6 +52,7 @@ func main() { if err != nil { log.Fatal(err) } + _ = s3c fs, err := lume.New(context.Background(), &lume.Options{ Branch: "main", @@ -69,9 +70,9 @@ func main() { defer fs.Close() - if err := uploadFolderToS3(context.Background(), s3c, "./var/repo/lume/_site", *bucketName); err != nil { - log.Fatal(err) - } + // if err := uploadFolderToS3(context.Background(), s3c, "./var/repo/lume/_site", *bucketName); err != nil { + // log.Fatal(err) + // } } func NewPatreonClient(hc *http.Client) (*patreon.Client, error) { |
