mirror of
https://github.com/sorenisanerd/gotty.git
synced 2025-04-03 09:30:28 +00:00
Launch an Xspice and run: echo -ne "\033]844;127.0.0.1;9876\007" This will launch a SPiCE client connecting to 127.0.0.1:9876. Still need to add all the security stuff and generally be more defensive in the implementation.
20 lines
515 B
Bash
Executable File
20 lines
515 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -u
|
|
set -x
|
|
|
|
# it would be good to not run the build if:
|
|
#
|
|
# * there are no changes in the source files used in the concatenator.js file
|
|
# * there haven't been any changes in this repo
|
|
#
|
|
# since the last build done by jenkins. To achieve this you might get the date
|
|
# of the last jenkins commit in this repo, and do git log --since 'that date'
|
|
# and check if there have been any commit or not.
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
echo "Generating spiceproxy.js"
|
|
|
|
spiceproxy/concatenator.js spice-web-client
|