Skip to content

Commit

Permalink
fix: placeholder triggering github action
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgrieser committed Aug 2, 2024
1 parent 38adfaa commit 3545ee7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions BOOTSTRAP.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ year=$(date +"%Y")
desc=$(curl -sL "https://api.github.com/repos/$repo" |
grep --max-count=1 "description" | cut -d'"' -f4)


#───────────────────────────────────────────────────────────────────────────────
# PLACEHOLDERS

Expand All @@ -36,7 +35,9 @@ replacePlaceholders "PLACEHOLDER_plugin_repo" "$repo"
# FILES

mv "./lua/PLACEHOLDER_plugin_name_short" "./lua/$name_short"
mv "./doc/PLACEHOLDER_plugin_name_short.txt" "./doc/$name_short.txt"

# not `mv` existing file, as it otherwise triggers the github action
mkdir "./doc" && touch "./doc/$name_short.txt"

rm -- "$0" # make this script delete itself

Expand Down
Empty file.

0 comments on commit 3545ee7

Please sign in to comment.