Compare commits
2 Commits
1445f3f197
...
a9599c0b61
Author | SHA1 | Date | |
---|---|---|---|
a9599c0b61 | |||
6028362078 |
17
CHANGELOG.md
17
CHANGELOG.md
@ -1,3 +1,17 @@
|
||||
<a name="unreleased"></a>
|
||||
## [Unreleased]
|
||||
|
||||
### Bug Fixes
|
||||
- **install:** correctly inject tools dir into gitignore
|
||||
|
||||
### Documentation
|
||||
- **tutorials:** fix obsolete link
|
||||
|
||||
|
||||
<a name="2023.8.25-stable.1621.af9c7e6"></a>
|
||||
## [2023.8.25-stable.1621.af9c7e6] - 2023-08-25
|
||||
|
||||
_Nothing functionally significant._
|
||||
|
||||
<a name="2023.8.25-stable.1617.35625f6"></a>
|
||||
## [2023.8.25-stable.1617.35625f6] - 2023-08-25
|
||||
@ -67,7 +81,8 @@ _Nothing functionally significant._
|
||||
- initial commit
|
||||
|
||||
|
||||
[Unreleased]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.25-stable.1617.35625f6...HEAD
|
||||
[Unreleased]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.25-stable.1621.af9c7e6...HEAD
|
||||
[2023.8.25-stable.1621.af9c7e6]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.25-stable.1617.35625f6...2023.8.25-stable.1621.af9c7e6
|
||||
[2023.8.25-stable.1617.35625f6]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.25-stable.1609.4d31268...2023.8.25-stable.1617.35625f6
|
||||
[2023.8.25-stable.1609.4d31268]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.25-stable.1606.be97e77...2023.8.25-stable.1609.4d31268
|
||||
[2023.8.25-stable.1606.be97e77]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.24-stable.1827.fa2dab5...2023.8.25-stable.1606.be97e77
|
||||
|
@ -3,7 +3,7 @@
|
||||
set -e
|
||||
|
||||
TASKS_DIR=".mktools"
|
||||
TASKS_FILES="webdav gitea changelog version checkmake"
|
||||
TASKS="${TASKS:-webdav gitea changelog version checkmake}"
|
||||
|
||||
main() {
|
||||
echo "Creating directory '$TASKS_DIR/'"
|
||||
@ -11,7 +11,7 @@ main() {
|
||||
mkdir -p "$TASKS_DIR"
|
||||
|
||||
# Download each referenced task files in $TASKS_DIR
|
||||
for f in $TASKS_FILES; do
|
||||
for f in $TASKS; do
|
||||
echo "Downloading file '$TASKS_DIR/$f.mk'"
|
||||
curl -qo "$TASKS_DIR/$f.mk" "https://forge.cadoles.com/Cadoles/mktools/raw/branch/master/tasks/$f.mk"
|
||||
done
|
||||
@ -20,7 +20,7 @@ main() {
|
||||
if [ ! -f .gitignore ]; then
|
||||
touch .gitignore
|
||||
fi
|
||||
grep -qF -- "$TASKS_DIR/" ".gitignore" || echo "$TASKS_DIR/" >> ".gitignore"
|
||||
grep -qFx -- "$TASKS_DIR/" .gitignore || echo -e "$TASKS_DIR/" >> .gitignore
|
||||
|
||||
echo "Done"
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user