Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
Simple Ass Runner - SAR
=======================
A tiny task runner
Usage
-----
$ sar
• build
• run
• test
$ sar build
After running "sar build" it executes the command under build section in your "sarc" file
Features
--------
running commands by name
thats it. nothing more
Installing
----------
go install github.com/jvqtil/sar@latest
or download a binary from releases
Syntax
------
sar uses Makefile format and supports nested calls, here's an example "sarc":
clean:
rm ./binary
build:
@clean
go build -o binary