Skip to content

Instantly share code, notes, and snippets.

@rhcarvalho
Created February 2, 2017 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rhcarvalho/4ad4f90b6d60b96dc225183e773fbf9e to your computer and use it in GitHub Desktop.
Save rhcarvalho/4ad4f90b6d60b96dc225183e773fbf9e to your computer and use it in GitHub Desktop.
DojoTimer helper for Linux

DojoTimer helper for Linux

This script is used to launch DojoTimer on Linux/Mono.

Place both dojotimer and dojotimer.exe in one of the directories in your $PATH. I place then in ~/bin.

Now, from the working directory of your dojo, where you will have your tests and implementation, run:

dojotimer .

It will launch DojoTimer with the "Working Directory" setting configured to match the current directory. If your "Script" setting is up to date, you should be ready to start writing tests!

Happy hacking!

#!/bin/bash
DIR="$(dirname ${BASH_SOURCE[0]})"
nohup mono "${DIR}/dojotimer.exe" "$@" &>/dev/null &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment