mirror of
https://github.com/snoyberg/keter.git
synced 2025-01-07 15:07:14 +03:00
9 lines
151 B
Bash
9 lines
151 B
Bash
|
#!/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 *
|