Select Git revision
-
Marc Schink authored
Move autogen.sh invocation of libjaylink from the configure to the bootstrap script because the configure script is included in tarball releases but autotools are not required to be available on end-user machines. Thanks to Paul Fertser for spotting this. Change-Id: I5489ae83885157a01803eed51a7328e47d67ea6d Signed-off-by:
Marc Schink <openocd-dev@marcschink.de> Reviewed-on: http://openocd.zylin.com/3569 Tested-by: jenkins Reviewed-by:
Paul Fertser <fercerpav@gmail.com>
Marc Schink authoredMove autogen.sh invocation of libjaylink from the configure to the bootstrap script because the configure script is included in tarball releases but autotools are not required to be available on end-user machines. Thanks to Paul Fertser for spotting this. Change-Id: I5489ae83885157a01803eed51a7328e47d67ea6d Signed-off-by:
Marc Schink <openocd-dev@marcschink.de> Reviewed-on: http://openocd.zylin.com/3569 Tested-by: jenkins Reviewed-by:
Paul Fertser <fercerpav@gmail.com>
stop mods server 530 B
#!/bin/bash
#
# stop mods server
#
# Neil Gershenfeld
# (c) Massachusetts Institute of Technology 2016
#
# This work may be reproduced, modified, distributed, performed, and
# displayed for any purpose, but must acknowledge the fab modules
# project. Copyright is retained and must be preserved. The work is
# provided as is; no warranty is provided, and users accept all
# liability.
#
pkill -f "node printserver.js"
pkill -f "node serialserver.js"
pkill -f "http-server -p 8080"
zenity --info --text 'mods server stopped'