Skip to content

Commit 4c6e2a4

Browse files
authored
Merge pull request #31 from gatewayd-io/new-plugin-install-flags
Add new plugin install flags (update and backup)
2 parents 86841e4 + bb706dc commit 4c6e2a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+67
-62
lines changed

developing-plugins/grpc-api-reference.md

Lines changed: 1 addition & 1 deletion

developing-plugins/index.md

Lines changed: 1 addition & 1 deletion

developing-plugins/plugin-developers-guide.md

Lines changed: 1 addition & 1 deletion

developing-plugins/sdk-reference.md

Lines changed: 1 addition & 1 deletion

developing-plugins/template-projects.md

Lines changed: 1 addition & 1 deletion

generate_last_modified_data.sh

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22
# Replace `last_modified_date` timestamp with current time
33
# https://mademistakes.com/notes/adding-last-modified-timestamps-with-git/#mention-5
44

5-
for b in $(find ./ -name '*.md'); do
5+
for b in $(find ./ -type d \( -path ./vendor -o -path ./node_modules \) -prune -o -name '*.md'); do
6+
if [ -d "${b}" ]; then
7+
continue
8+
fi
9+
10+
if [ "$b" = "./.vale/write-good/README.md" ] || [ "$b" = "./README.md" ]; then
11+
continue
12+
fi
13+
614
if [ $(cat ${b} | head -n 1 | grep -E '\-\-\-') ]; then
715
echo "already have meta"
816
else
@@ -21,7 +29,4 @@ for b in $(find ./ -name '*.md'); do
2129
mv tmp ${b}
2230
done
2331

24-
# Skip files
25-
rm we work.md
26-
git restore .vale/write-good/README.md
27-
git restore README.md
32+
rm -rf we work.md

getting-started/index.md

Lines changed: 1 addition & 1 deletion

getting-started/installation.md

Lines changed: 1 addition & 1 deletion

getting-started/running-gatewayd.md

Lines changed: 1 addition & 1 deletion

getting-started/welcome.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)