File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -14,10 +14,6 @@ setup_dev:
1414assert_setup_dev :
1515 pre-commit run -a
1616
17- ci :
18- chmod +x common/install_brew_packages.sh
19- ./common/install_brew_packages.sh
20-
2117lint :
2218 find . -type f -name " *.sh" -exec shfmt -w -i 6 {} +
2319 find . -type f -name " *.sh" -exec shellcheck {} +
Original file line number Diff line number Diff line change 11# Shared Scripts
22
3- Quick-share command line scripts for use in quick command runner like Makefile or Justfile.
3+ This repository contains reusable shell scripts intended for use with quick command runners like Makefile or Justfile.
4+ It is designed to be added as a Git submodule in other projects.
45
56## Quick Start
67
78``` bash
8- make setup_dev # Install all dependencies and setup development environment
9- make assert_setup_dev # Validate setup
9+ make setup_dev
10+ make assert_setup_dev
1011```
1112
1213## Requirements
@@ -17,10 +18,14 @@ make assert_setup_dev # Validate setup
1718
1819## Usage
1920
21+ - Add as Submodule
22+
2023``` bash
2124git submodule add -b main https://github.com/wisarootl/shared-scripts.git scripts/shared
2225```
2326
27+ - Example Makefile Usage
28+
2429``` Makefile
2530setup_dev :
2631 chmod +x scripts/shared/node/setup_dev.sh
You can’t perform that action at this time.
0 commit comments