mirror of
https://github.com/snoyberg/keter.git
synced 2025-01-05 21:36:40 +03:00
3c85e21dab
Wildcard hostnames are now supported in Keter, with partial RFC2818 support. Wildcard hostnames can have exceptions, can be specified at arbitrary depths, and are non-recursive. `*.example.com` will match `foo.example.com` but not `foo.bar.example.com`. Likewise, `*.*.example.com` will only match the latter, not the former. The keter.cabal is modified to build the example app. Internal string usage is made more homogeneous to use Data.Text. Despite this, internationalized domain names are not yet supported unless entered in config files as punycode.
9 lines
151 B
Bash
Executable File
9 lines
151 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
pushd `dirname $0`
|
|
echo "In `dirname $0`"
|
|
cp ../dist/build/hello/hello ./foo/hello
|
|
strip ./foo/hello
|
|
cd ./foo
|
|
tar czfv ../foo.keter *
|