Skip to content

Commit

Permalink
~
Browse files Browse the repository at this point in the history
  • Loading branch information
alecrabbit committed Mar 18, 2024
1 parent d954973 commit 87afc1f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
15 changes: 9 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# # #
# # ‼️ STOP ‼️
# # ‼️ DO **NOT** EDIT THIS FILE ‼️
# # ‼️ STOP ‼️
# # ‼️ DO **NOT** EDIT THIS FILE ‼️
# #
# # Unless you KNOW what you're doing
# # #
# # https://github.com/alecrabbit/dev-app-makefile
# # See https://github.com/alecrabbit/dev-app-makefile

# Project: DAM tool
SHELL=/bin/bash
Expand All @@ -21,12 +23,13 @@ ifneq ("$(wildcard $(__CORE_FILE))","")
endif

__DAM_URL="https://github.com/alecrabbit/dev-app-makefile"
__DAM_VERSION="0.0.34"

install_dam_tool:
@echo -e "Installing DAM tool...\n";
@wget -qO- "${__DAM_URL}/archive/refs/heads/main.tar.gz" | tar -xz \
&& shopt -s dotglob && cp -r dev-app-makefile-main/* . && shopt -u dotglob \
&& rm -r dev-app-makefile-main && ./install && make upgrade c=main
@wget -qO- "${__DAM_URL}/archive/refs/tags/${__DAM_VERSION}.tar.gz" | tar -xz \
&& shopt -s dotglob && cp -r dev-app-makefile-${__DAM_VERSION}/* . && shopt -u dotglob \
&& rm -r dev-app-makefile-${__DAM_VERSION} && ./install && make upgrade

help_dam_tool:
@echo -e "DAM tool help:\n";
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ The set of Makefiles spiced with shell scripts to make development easier

```bash
wget -qO- "https://github.com/alecrabbit/dev-app-makefile/archive/refs/tags/0.0.29.tar.gz" \
| tar -xz && shopt -s dotglob && cp -rv dev-app-makefile-0.0.29/* . \
&& shopt -u dotglob && rm -r dev-app-makefile-0.0.29 && ./install && make upgrade
wget -qO- "https://github.com/alecrabbit/dev-app-makefile/archive/refs/tags/0.0.33.tar.gz" \
| tar -xz && shopt -s dotglob && cp -rv dev-app-makefile-0.0.33/* . \
&& shopt -u dotglob && rm -r dev-app-makefile-0.0.33 && ./install && make upgrade
```

```bash
Expand All @@ -21,4 +21,3 @@ wget -qO- "https://github.com/alecrabbit/dev-app-makefile/archive/refs/heads/dev
| tar -xz && shopt -s dotglob && cp -rv dev-app-makefile-dev/* . \
&& shopt -u dotglob && rm -r dev-app-makefile-dev && ./install && make upgrade c=dev
```

0 comments on commit 87afc1f

Please sign in to comment.