9 lines
60 B
Bash
Executable file
9 lines
60 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ex;
|
|
|
|
pushd src/
|
|
|
|
zip ../tabunny.zip *
|
|
|
|
popd
|