mirror of
https://github.com/nealey/vail.git
synced 2025-01-19 05:14:50 -07:00
Neale Pickett
74ad07174a
* MIDI * Send MIDI key release for v2 of vail adapter * Now handles hot-plugging MIDI devices! * Iambic input * Typeahead is now a toggle * Implemented iambic mode A, also as a toggle (#31) * If you set the repeater to "debug", it spews out debugging messages * Made it a bit easier on myself to update my instance
13 lines
315 B
Bash
Executable file
13 lines
315 B
Bash
Executable file
#! /bin/sh
|
|
|
|
cd $(dirname $0)
|
|
|
|
case "$1" in
|
|
-prod|--prod)
|
|
echo "Push to main branch, then update stack."
|
|
docker -H ssh://melville.woozle.org service update --image ghcr.io/nealey/vail:main melville_vail
|
|
;;
|
|
"")
|
|
rsync -va static/ melville.woozle.org:/srv/vail/testing/
|
|
;;
|
|
esac
|