mirror of
https://github.com/N4S4/synology-api.git
synced 2026-01-14 01:58:07 +00:00
9 lines
240 B
Bash
Executable File
9 lines
240 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# script to install same tools versions for this project
|
|
|
|
# install tools versions specified in .tool-versions file
|
|
asdf install
|
|
|
|
# install pre-commit hooks
|
|
pre-commit install --hook-type pre-commit --hook-type pre-push
|