Skip to content

Instantly share code, notes, and snippets.

View josteinaj's full-sized avatar

Jostein Austvik Jacobsen josteinaj

View GitHub Profile
@josteinaj
josteinaj / autobuild-mvn.sh
Created November 1, 2013 15:05
Automatically build maven projects on file change.
#!/bin/bash
# Jostein Austvik Jacobsen © 2013
#
# Before using:
# To increase your inotify watch limit,
# see: http://monodevelop.com/Inotify_watches_limit
# and for more info: http://askubuntu.com/questions/154255/how-can-i-tell-if-i-am-out-of-inotify-watches
# I have the limit set to 524288 as described in the last link and it works great.
#
@josteinaj
josteinaj / pipeline-build.sh
Last active December 26, 2015 18:39
Bash script for building DAISY Pipeline 2.
#!/bin/bash
# WARNING: this will git pull all projects, which may overwrite any unstaged file changes! I've added "git add -A" to the script to avoid this, but try commiting any changes before running this script just to be safe.
# Convenience script that builds all Pipeline 2 projects
#
# To clean all projects:
# ./pipeline-build.sh clean
#
# To checkout, pull and install all projects: