aboutsummaryrefslogtreecommitdiff
path: root/doc/Updater.md
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-10-03 16:48:26 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2018-10-03 16:48:26 +0200
commitae2a713f26fd58f397aaf93242f24c85dee98a2b (patch)
treedb69c96f6419e011cfc1c6e6081613d7a0f0d7cc /doc/Updater.md
parentSubwindow: only keep tab history for restore tab action (diff)
downloadsmolbote-ae2a713f26fd58f397aaf93242f24c85dee98a2b.tar.xz
Convert documentation into asciidoc from markdown
Diffstat (limited to 'doc/Updater.md')
-rw-r--r--doc/Updater.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/doc/Updater.md b/doc/Updater.md
deleted file mode 100644
index 899240f..0000000
--- a/doc/Updater.md
+++ /dev/null
@@ -1,25 +0,0 @@
-## Updater
-
-### Manifest
-~~~sh
-find windows/ -type f | xargs sha512sum | sed 's/windows\///' > windows-sha512.txt
-find windows/ -type d -exec chmod 755 {} +
-~~~
-
-### Building
-
-You can build for the current system using:
-~~~sh
-go build
-~~~
-
-You can also cross-compile for other systems by setting GOOS and GOARCH. For a
-list of supported platforms, use `go tool dist list`.
-~~~sh
-GOOS=windows GOARCH=amd64 go build
-~~~
-
-#### Removing debug information
-~~~sh
-strip updater
-~~~