Skip to content

Commit f0378de

Browse files
committed
updates
1 parent 29250b4 commit f0378de

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

docs/install/configuration.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,7 @@ Event IDs are needed/used in command hooks and webhooks.
124124
`5` = imported, `6` = deleting, `7` = delete failed, `8` = deleted, `9` = nothing extracted
125125

126126
The 'nothing extracted' event (9) only fires for the folder watcher, not starr apps.
127+
128+
---
129+
130+
_<font color="gray" style={{float: 'right'}}>This page is [generated automatically](https://github.com/Unpackerr/unpackerr/tree/main/init/config).</font>_

generate.sh

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,17 @@
22
# The beginning: https://github.com/Unpackerr/unpackerr/pull/459
33
# The generator: https://github.com/Unpackerr/unpackerr/tree/main/init/config
44

5+
# Bail on an errors.
56
set -e
6-
go env -w GOPRIVATE=github.com/Unpackerr/unpackerr/*
77

8+
# We do this because go cache will download an older version.
9+
go env -w 'GOPRIVATE=github.com/Unpackerr/*'
10+
11+
# Move into the directory <this script>/docs/install.
812
pushd "$(dirname -- "${BASH_SOURCE[0]}")/docs/install"
9-
go run github.com/Unpackerr/unpackerr/init/config@main docs
13+
14+
# Run the config generator directly from github.
15+
go run github.com/Unpackerr/unpackerr/init/config@main -type documentation
16+
17+
# Go back to wherever we were when we started.
1018
popd

0 commit comments

Comments
 (0)